capacitor-standard-version 1.1.1 → 1.1.4
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.
- package/.husky/pre-commit +4 -0
- package/CHANGELOG.md +21 -0
- package/package.json +4 -3
- package/renovate.json +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.1.4](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.3...v1.1.4) (2022-12-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* auto update fix ([65ca7b9](https://github.com/Cap-go/capacitor-standard-version/commit/65ca7b94f3ddd050f702168ef3b59b8ea8571d4d))
|
|
11
|
+
|
|
12
|
+
### [1.1.3](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.2...v1.1.3) (2022-11-24)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* lockfile ([39bee03](https://github.com/Cap-go/capacitor-standard-version/commit/39bee035ad89598d8dd2c71b9e8bd77b7436198c))
|
|
18
|
+
|
|
19
|
+
### [1.1.2](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.1...v1.1.2) (2022-11-24)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* husly version ([6ffa3db](https://github.com/Cap-go/capacitor-standard-version/commit/6ffa3db65d1f93344aaf221afcc023e56ede98de))
|
|
25
|
+
|
|
5
26
|
### [1.1.1](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.0...v1.1.1) (2022-11-24)
|
|
6
27
|
|
|
7
28
|
## 1.1.0 (2022-11-24)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-standard-version",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Default standard-version config for capacitor app",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"no-debug": "node dist/index.js",
|
|
12
12
|
"build": "set NODE_ENV=production&& npx webpack --config webpack.config.js",
|
|
13
13
|
"pack": "pkg",
|
|
14
|
-
"lint": "eslint . --ext .ts --fix"
|
|
14
|
+
"lint": "eslint . --ext .ts --fix",
|
|
15
|
+
"prepare": "husky install"
|
|
15
16
|
},
|
|
16
17
|
"repository": {
|
|
17
18
|
"type": "git",
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
49
50
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
50
51
|
"git-format-staged": "^3.0.0",
|
|
51
|
-
"husky": "^
|
|
52
|
+
"husky": "^8.0.0",
|
|
52
53
|
"nodemon": "^2.0.15",
|
|
53
54
|
"pkg": "^5.5.2",
|
|
54
55
|
"prettier": "^2.7.1",
|
package/renovate.json
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
3
|
"extends": [
|
|
4
|
-
"config:base"
|
|
4
|
+
"config:base",
|
|
5
|
+
"schedule:earlyMondays"
|
|
6
|
+
],
|
|
7
|
+
"lockFileMaintenance": {
|
|
8
|
+
"enabled": true,
|
|
9
|
+
"automerge": true,
|
|
10
|
+
"automergeType": "branch",
|
|
11
|
+
"platformAutomerge": true
|
|
12
|
+
},
|
|
13
|
+
"packageRules": [
|
|
14
|
+
{
|
|
15
|
+
"matchUpdateTypes": ["minor", "patch"],
|
|
16
|
+
"matchCurrentVersion": "!/^0/",
|
|
17
|
+
"automerge": true
|
|
18
|
+
}
|
|
5
19
|
]
|
|
6
20
|
}
|