Merge pull request #9937 from keymanapp/chore/common/npm-prepublish-remove

chore(common): remove prepublish step from package.json
This commit is contained in:
Marc Durdin 2023-11-06 14:57:43 +11:00 committed by GitHub
commit 2f42dd41f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 16 deletions

View file

@ -18,8 +18,7 @@
"build": "tsc -b",
"build:schema": "ajv compile",
"lint": "eslint .",
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --skip-full --reporter=lcov --reporter=text mocha",
"prepublishOnly": "npm run build"
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --skip-full --reporter=lcov --reporter=text mocha"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"license": "MIT",

View file

@ -16,8 +16,7 @@
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint",
"prepublishOnly": "npm run build"
"test": "npm run lint"
},
"license": "MIT",
"bugs": {

View file

@ -18,8 +18,7 @@
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
"prepublishOnly": "npm run build"
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"license": "MIT",

View file

@ -17,8 +17,7 @@
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
"prepublishOnly": "npm run build"
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"license": "MIT",

View file

@ -18,8 +18,7 @@
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint",
"prepublishOnly": "npm run build"
"test": "npm run lint"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"contributors": [

View file

@ -18,8 +18,7 @@
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
"prepublishOnly": "npm run build"
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"contributors": [

View file

@ -17,8 +17,7 @@
"build": "tsc -b",
"lint": "eslint .",
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
"coverage": "npm test",
"prepublishOnly": "npm run build"
"coverage": "npm test"
},
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
"contributors": [

View file

@ -15,8 +15,7 @@
"bundle-kmc": "esbuild build/src/kmc.js --bundle --platform=node --target=es2022 > build/cjs-src/kmc.cjs",
"bundle-kmlmc": "esbuild build/src/kmlmc.js --bundle --platform=node --target=es2022 > build/cjs-src/kmlmc.cjs",
"bundle-kmlmp": "esbuild build/src/kmlmp.js --bundle --platform=node --target=es2022 > build/cjs-src/kmlmp.cjs",
"test": "eslint . && cd test && tsc -b && cd .. && mocha",
"prepublishOnly": "npm run build"
"test": "eslint . && cd test && tsc -b && cd .. && mocha"
},
"type": "module",
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",