@anolilab/multi-semantic-release 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.1](https://github.com/anolilab/multi-semantic-release/compare/v1.0.0...v1.0.1) (2023-09-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * changed postinstall and preinstall to prepare ([55bd33e](https://github.com/anolilab/multi-semantic-release/commit/55bd33e0f2ac7ab73c1cd331ad1c904a1599e6b4))
7
+
1
8
  ## 1.0.0 (2023-09-28)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/multi-semantic-release",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A multi semantic release tool for monorepos.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,8 +31,7 @@
31
31
  ],
32
32
  "scripts": {
33
33
  "build": "echo 'There is no need for build' && exit 0",
34
- "preinstall": "node verify-node-version.cjs",
35
- "postinstall": "is-ci || husky install || exit 0",
34
+ "prepare": "is-ci || (node verify-node-version.cjs && pnpx only-allow pnpm && husky install)",
36
35
  "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
37
36
  "lint:eslint:fix": "pnpm run lint:eslint --fix",
38
37
  "lint:prettier": "prettier --config=.prettierrc.cjs --check .",