Skip to content

Commit edd94c3

Browse files
committed
fix: removed pinst from package list
1 parent 692e23f commit edd94c3

File tree

4 files changed

+7
-29
lines changed

4 files changed

+7
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The template uses [google-github-actions/release-please-action](https://github.c
77
2. Automated `CHANGELOG` generation
88
3. Automated version bumps based on commit messages. It does all of these by parsing the git history, it looks for [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) messages and it creates PR releases.
99

10-
It uses `npm`, `TypeScript`, `Jest`, `ESLint`, `Prettier`, `Husky`, `pinst`, `commitlint` and `lint-staged`. The production files include CommonJS, ES Modules and TypeScript declaration files.
10+
It uses `npm`, `TypeScript`, `Jest`, `ESLint`, `Prettier`, `Husky`, `commitlint` and `lint-staged`. The production files include CommonJS, ES Modules and TypeScript declaration files.
1111

1212
#### Install dependencies
1313
Install dependencies with npm:

jest.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ module.exports = {
99
preset: 'ts-jest',
1010
testEnvironment: 'node',
1111
globals: {
12-
"ts-jest": {
13-
tsconfig: "tsconfig.json"
14-
}
15-
},
16-
};
12+
'ts-jest': {
13+
tsconfig: 'tsconfig.json',
14+
},
15+
},
16+
};

package-lock.json

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"test": "jest --no-cache --runInBand",
99
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
1010
"postinstall": "husky install",
11-
"postpublish": "pinst --enable",
12-
"prepublishOnly": "pinst --disable && npm run build",
11+
"prepublishOnly": "npm run build",
1312
"lint": "eslint --ext .ts src/",
1413
"lint:fix": "prettier --write src/ && eslint --ext .ts src/ --fix",
1514
"prepare": "husky install"
@@ -57,7 +56,6 @@
5756
"husky": "^8.0.1",
5857
"jest": "^28.1.2",
5958
"lint-staged": "^13.0.3",
60-
"pinst": "^3.0.0",
6159
"prettier": "^2.7.1",
6260
"ts-jest": "^28.0.5",
6361
"ts-loader": "^9.3.1",

0 commit comments

Comments
 (0)