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

Inline all shared scripts to make them work in all environments

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2023-02-23 09:38:02 +02:00
parent 1a91e78cdb
commit 99c70c62ce
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
6 changed files with 4 additions and 24 deletions

7
package-lock.json generated
View File

@ -32832,9 +32832,6 @@
"jest-watch-typeahead": "^2.2.1",
"lodash": "^4.17.21",
"ts-jest": "^29.0.3"
},
"bin": {
"lens-test": "bin/test.sh"
}
},
"packages/infrastructure/jest/node_modules/@jest/console": {
@ -34112,10 +34109,6 @@
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"bin": {
"lens-build": "bin/build.sh",
"lens-remove-build": "bin/remove-build.sh"
}
},
"packages/infrastructure/webpack/node_modules/sass-loader": {

View File

@ -15,9 +15,6 @@
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"bin": {
"lens-test": "bin/test.sh"
},
"dependencies": {
"@swc/core": "^1.3.20",
"@swc/jest": "^0.2.23",

View File

@ -1,2 +0,0 @@
set -e
webpack $@

View File

@ -1 +0,0 @@
rm -rfv build

View File

@ -15,12 +15,8 @@
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"bin": {
"lens-build": "bin/build.sh",
"lens-remove-build": "bin/remove-build.sh"
},
"scripts": {
"test:unit": "lens-test"
"test:unit": "jest --coverage --runInBand"
},
"dependencies": {
"@types/webpack-env": "^1.18.0",

View File

@ -20,12 +20,9 @@
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"scripts": {
"build": "lens-build",
"build:remove": "lens-remove-build",
"dev": "lens-build -- --watch",
"code-style:fix": "lens-fix-code-style",
"code-style:verify": "lens-verify-code-style",
"test": "lens-test"
"build": "webpack",
"dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand"
},
"peerDependencies": {
"@ogre-tools/fp": "^12.0.1",