@binden/semantic-release-config 1.1.0 → 1.1.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 +6 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.1](https://github.com/binden-js/semantic-release-config/compare/v1.1.0...v1.1.1) (2022-09-04)
4
+
5
+ ### Dependencies
6
+
7
+ - bump `semantic-release` from `19.0.3` to `19.0.5` ([bf6cb3d](https://github.com/binden-js/semantic-release-config/commit/bf6cb3d62bddb66497019813151af991e0419d4c))
8
+
3
9
  ## [1.1.0](https://github.com/binden-js/semantic-release-config/compare/v1.0.0...v1.1.0) (2022-07-28)
4
10
 
5
11
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@binden/semantic-release-config",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Shareable semantic-release config (based on Conventional Commits)",
5
5
  "main": ".releaserc.json",
6
6
  "type": "commonjs",
@@ -11,7 +11,8 @@
11
11
  },
12
12
  "scripts": {
13
13
  "commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
14
- "install:clean": "rm -fr node_modules && rm -f package-lock.json && npm install",
14
+ "install:clean": "npm install",
15
+ "preinstall:clean": "rm -rf node_modules package-lock.json",
15
16
  "prepare": "husky install",
16
17
  "prettier": "prettier -c .",
17
18
  "prettier:write": "npm run prettier -- --write"
@@ -34,7 +35,7 @@
34
35
  "peerDependencies": {
35
36
  "@semantic-release/changelog": "^6.0.1",
36
37
  "@semantic-release/git": "^10.0.1",
37
- "semantic-release": "^19.0.3"
38
+ "semantic-release": "^19.0.5"
38
39
  },
39
40
  "devDependencies": {
40
41
  "@binden/commitlint-config": "^1.0.0",