diff --git a/package-lock.json b/package-lock.json index 6cea9cb6b0..24cae086b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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": { diff --git a/packages/infrastructure/jest/package.json b/packages/infrastructure/jest/package.json index b0359441dd..b6e00d1369 100644 --- a/packages/infrastructure/jest/package.json +++ b/packages/infrastructure/jest/package.json @@ -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", diff --git a/packages/infrastructure/webpack/bin/build.sh b/packages/infrastructure/webpack/bin/build.sh deleted file mode 100755 index 589acdeab2..0000000000 --- a/packages/infrastructure/webpack/bin/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -set -e -webpack $@ diff --git a/packages/infrastructure/webpack/bin/remove-build.sh b/packages/infrastructure/webpack/bin/remove-build.sh deleted file mode 100755 index f2421c500d..0000000000 --- a/packages/infrastructure/webpack/bin/remove-build.sh +++ /dev/null @@ -1 +0,0 @@ -rm -rfv build diff --git a/packages/infrastructure/webpack/package.json b/packages/infrastructure/webpack/package.json index 35df41519c..2539a99bb8 100644 --- a/packages/infrastructure/webpack/package.json +++ b/packages/infrastructure/webpack/package.json @@ -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", diff --git a/packages/technical-features/application/package.json b/packages/technical-features/application/package.json index 25d7230b83..91f1a6be34 100644 --- a/packages/technical-features/application/package.json +++ b/packages/technical-features/application/package.json @@ -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",