Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-nls

Package Overview
Dependencies
Maintainers
9
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-nls - npm Package Compare versions

Comparing version 4.1.2 to 5.0.0-next.1

lib/browser/main.d.ts

37

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc