Skip to content

Commit 78b20ff

Browse files
committed
rev pkg
1 parent ec90e06 commit 78b20ff

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build/node-extension.webpack.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ const config = {
1919
devtool: 'nosources-source-map',
2020
externals: {
2121
vscode: 'commonjs vscode', // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
22+
// eslint-disable-next-line @typescript-eslint/naming-convention
23+
'@flow-scanner/lightning-flow-scanner-core': 'commonjs @flow-scanner/lightning-flow-scanner-core',
2224
},
2325
resolve: {
2426
// support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lightning-flow-scanner-vsx",
33
"displayName": "Lightning Flow Scanner VSX",
44
"publisher": "ForceConfigControl",
5-
"license": "MIT",
5+
"license": "AGPL-3.0",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/Flow-Scanner/lightning-flow-scanner-vsx"
@@ -79,7 +79,7 @@
7979
"package": "webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js",
8080
"____MAIN____": "Developer Scripts",
8181
"build": "rollup -c && npm run compile",
82-
"build:vsx": "npm run vscode:prepublish && vsce package --allow-package-secrets npm",
82+
"build:vsx": "npm run vscode:prepublish && vsce package",
8383
"watch": "rimraf out dist && concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\""
8484
},
8585
"devDependencies": {

0 commit comments

Comments
 (0)