1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

add npm run to extension build commands

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2020-11-18 11:03:43 -05:00
parent bf8c0c7a99
commit 0e27ba96fb
9 changed files with 10 additions and 10 deletions

View File

@ -51,7 +51,7 @@ Each Lens extension must have a `package.json` file. It contains a mix of Node.j
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch"
},
"dependencies": {

View File

@ -9,7 +9,7 @@
"styles": []
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -8,7 +8,7 @@
"styles": []
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch",
"test": "echo NO TESTS"
},

View File

@ -4,7 +4,7 @@
"description": "License menu item",
"main": "dist/main.js",
"scripts": {
"build": "webpack -p",
"build": "npm run webpack -p",
"dev": "webpack --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -8,7 +8,7 @@
"styles": []
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -8,7 +8,7 @@
"styles": []
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -8,7 +8,7 @@
"styles": []
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build": "npm run webpack --config webpack.config.js",
"dev": "npm run build --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -5,7 +5,7 @@
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"build": "webpack -p",
"build": "npm run webpack -p",
"dev": "webpack --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},

View File

@ -9,7 +9,7 @@
"styles": []
},
"scripts": {
"build": "webpack -p",
"build": "npm run webpack -p",
"dev": "webpack --watch",
"test": "jest --passWithNoTests --env=jsdom src $@"
},