vscode-nls
Advanced tools
Comparing version 4.1.2 to 5.0.0-next.1
{ | ||
"name": "vscode-nls", | ||
"version": "4.1.2", | ||
"version": "5.0.0-next.1", | ||
"description": "NPM module to externalize and localize VSCode extensions", | ||
@@ -14,21 +14,32 @@ "author": "Microsoft Corporation", | ||
}, | ||
"main": "./lib/main.js", | ||
"typings": "./lib/main", | ||
"main": "./lib/node/main.js", | ||
"browser": { | ||
"./lib/node/main.js": "./lib/browser/main.js" | ||
}, | ||
"typings": "./lib/common/common.d.ts", | ||
"devDependencies": { | ||
"@types/mocha": "^7.0.2", | ||
"@types/node": "^12.12.29", | ||
"@types/mocha": "^7.0.2", | ||
"mocha": "^7.1.0", | ||
"typescript": "^3.8.3", | ||
"@typescript-eslint/parser": "^2.24.0", | ||
"eslint": "^6.8.0", | ||
"@typescript-eslint/parser": "^2.24.0", | ||
"rimraf": "^3.0.2" | ||
"mocha": "^7.2.0", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^3.9.3" | ||
}, | ||
"scripts": { | ||
"prepublishOnly": "npm run lint && npm run compile && npm run test", | ||
"compile": "tsc -p ./src", | ||
"watch": "tsc -w -p ./src", | ||
"prepublishOnly": "npm run clean && npm run compile && npm run lint && npm run test", | ||
"compile": "tsc -b ./tsconfig.json", | ||
"watch": "tsc -b ./tsconfig.json -w", | ||
"clean": "rimraf lib", | ||
"test": "mocha", | ||
"lint": "eslint --config .eslintrc.json ./src/**/*.ts" | ||
} | ||
"lint": "eslint --config .eslintrc.json ./**/*.ts" | ||
}, | ||
"files": [ | ||
"common", | ||
"browser", | ||
"node", | ||
"lib/common", | ||
"lib/browser", | ||
"lib/node" | ||
] | ||
} |
@@ -41,2 +41,6 @@ # vscode-nls | ||
### 5.0.0-next.1 | ||
* Split code into common, node and browser to support using vscode-nls in a Web browser. This is a breaking change and need adoption since the default exports of the module are only exporting the common types. To import the node specific part use `vscode-nls\node`. To use the browser specific part import `vscode-nls\browser`. | ||
### 4.1.1 | ||
@@ -43,0 +47,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
207883
23
680
73
2
1