capacitor-standard-version 1.1.21 → 1.1.34
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/.github/workflows/build.yml +8 -10
- package/.github/workflows/bump_version.yml +4 -4
- package/.vscode/tasks.json +1 -1
- package/CHANGELOG.md +26 -0
- package/README.md +7 -4
- package/bun.lock +1241 -0
- package/dist/index.js +1 -1
- package/eslint.config.mjs +11 -0
- package/package.json +28 -45
- package/src/bin/android.ts +17 -17
- package/src/bin/index.ts +13 -12
- package/src/bin/ios.ts +14 -15
- package/src/bin/utils.ts +22 -20
- package/tsconfig.json +5 -5
- package/.eslintrc.js +0 -113
|
@@ -3,27 +3,25 @@ name: Build source code and send to Capgo
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
tags:
|
|
6
|
-
-
|
|
6
|
+
- '*'
|
|
7
7
|
|
|
8
8
|
jobs:
|
|
9
9
|
deploy:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
|
-
name:
|
|
11
|
+
name: Build code and release
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out
|
|
14
|
-
uses: actions/checkout@
|
|
15
|
-
- uses:
|
|
16
|
-
with:
|
|
17
|
-
version: 7
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
- uses: oven-sh/setup-bun@v2
|
|
18
16
|
- name: Install dependencies
|
|
19
17
|
id: install_code
|
|
20
|
-
run:
|
|
18
|
+
run: bun i
|
|
21
19
|
- name: Lint
|
|
22
20
|
id: lint_code
|
|
23
|
-
run:
|
|
21
|
+
run: bun run lint
|
|
24
22
|
- name: Build
|
|
25
23
|
id: build_code
|
|
26
|
-
run:
|
|
27
|
-
- uses: JS-DevTools/npm-publish@
|
|
24
|
+
run: bun run build
|
|
25
|
+
- uses: JS-DevTools/npm-publish@v3
|
|
28
26
|
with:
|
|
29
27
|
token: ${{ secrets.NPM_TOKEN }}
|
|
@@ -8,15 +8,15 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
bump-version:
|
|
11
|
-
if:
|
|
11
|
+
if: '!startsWith(github.event.head_commit.message, ''chore(release):'')'
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
|
-
name:
|
|
13
|
+
name: Bump version and create changelog with standard version
|
|
14
14
|
steps:
|
|
15
15
|
- name: Check out
|
|
16
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
17
|
with:
|
|
18
18
|
fetch-depth: 0
|
|
19
|
-
token:
|
|
19
|
+
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
|
|
20
20
|
- name: Git config
|
|
21
21
|
run: |
|
|
22
22
|
git config --local user.name "github-actions[bot]"
|
package/.vscode/tasks.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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.34](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.33...v1.1.34) (2025-08-08)
|
|
6
|
+
|
|
7
|
+
### [1.1.33](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.32...v1.1.33) (2025-07-19)
|
|
8
|
+
|
|
9
|
+
### [1.1.32](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.31...v1.1.32) (2025-07-14)
|
|
10
|
+
|
|
11
|
+
### [1.1.31](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.30...v1.1.31) (2025-06-23)
|
|
12
|
+
|
|
13
|
+
### [1.1.30](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.29...v1.1.30) (2025-06-02)
|
|
14
|
+
|
|
15
|
+
### [1.1.29](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.28...v1.1.29) (2025-05-26)
|
|
16
|
+
|
|
17
|
+
### [1.1.28](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.27...v1.1.28) (2025-05-19)
|
|
18
|
+
|
|
19
|
+
### [1.1.27](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.26...v1.1.27) (2023-08-07)
|
|
20
|
+
|
|
21
|
+
### [1.1.26](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.25...v1.1.26) (2023-08-07)
|
|
22
|
+
|
|
23
|
+
### [1.1.25](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.24...v1.1.25) (2023-07-24)
|
|
24
|
+
|
|
25
|
+
### [1.1.24](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.23...v1.1.24) (2023-07-03)
|
|
26
|
+
|
|
27
|
+
### [1.1.23](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.22...v1.1.23) (2023-06-19)
|
|
28
|
+
|
|
29
|
+
### [1.1.22](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.21...v1.1.22) (2023-06-05)
|
|
30
|
+
|
|
5
31
|
### [1.1.21](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.20...v1.1.21) (2023-05-29)
|
|
6
32
|
|
|
7
33
|
### [1.1.20](https://github.com/Cap-go/capacitor-standard-version/compare/v1.1.19...v1.1.20) (2023-05-15)
|
package/README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
# capacitor-standard-version
|
|
2
|
+
<a href="https://capgo.app/"><img src='https://raw.githubusercontent.com/Cap-go/capgo/main/assets/capgo_banner.png' alt='Capgo - Instant updates for capacitor'/></a>
|
|
3
|
+
<div align="center">
|
|
4
|
+
<h2><a href="https://capgo.app/?ref=plugin"> ➡️ Get Instant updates for your App with Capgo</a></h2>
|
|
5
|
+
<h2><a href="https://capgo.app/consulting/?ref=plugin"> Missing a feature? We’ll build the plugin for you 💪</a></h2>
|
|
6
|
+
</div>
|
|
2
7
|
|
|
3
8
|
Default config for standard-version for capacitor app
|
|
4
9
|
|
|
@@ -6,9 +11,7 @@ use it at builtin replacement of https://www.npmjs.com/package/standard-version
|
|
|
6
11
|
|
|
7
12
|
All config from .versionrc, .versionrc.json or .versionrc.js are supported
|
|
8
13
|
|
|
9
|
-
|
|
10
|
-
## Install
|
|
11
|
-
|
|
14
|
+
## Install
|
|
12
15
|
|
|
13
16
|
`npm i capacitor-standard-version`
|
|
14
17
|
|
|
@@ -29,7 +32,7 @@ jobs:
|
|
|
29
32
|
bump-version:
|
|
30
33
|
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
|
|
31
34
|
runs-on: ubuntu-latest
|
|
32
|
-
name:
|
|
35
|
+
name: Bump version and create changelog with standard version
|
|
33
36
|
steps:
|
|
34
37
|
- name: Check out
|
|
35
38
|
uses: actions/checkout@v3
|