@capgo/cli 4.2.0 → 4.2.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.
- package/.github/workflows/test.yml +7 -11
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -11,24 +11,20 @@ jobs:
|
|
|
11
11
|
name: "Build code and test"
|
|
12
12
|
steps:
|
|
13
13
|
- name: Check out
|
|
14
|
-
uses: actions/checkout@
|
|
15
|
-
-
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
- name: Setup bun
|
|
16
|
+
uses: oven-sh/setup-bun@v1.1.1
|
|
16
17
|
with:
|
|
17
|
-
version:
|
|
18
|
-
- name: Use Node.js
|
|
19
|
-
uses: actions/setup-node@v3
|
|
20
|
-
with:
|
|
21
|
-
node-version: 18
|
|
22
|
-
cache: "pnpm"
|
|
18
|
+
bun-version: latest
|
|
23
19
|
- name: Install dependencies
|
|
24
20
|
id: install_code
|
|
25
|
-
run:
|
|
21
|
+
run: bun install --frozen-lockfile
|
|
26
22
|
- name: Lint
|
|
27
23
|
id: lint_code
|
|
28
|
-
run:
|
|
24
|
+
run: bun run lint
|
|
29
25
|
- name: Build
|
|
30
26
|
id: build_code
|
|
31
|
-
run:
|
|
27
|
+
run: bun run build
|
|
32
28
|
- name: Run
|
|
33
29
|
id: run_cli
|
|
34
30
|
run: node dist/index.js --help
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
### [4.2.1](https://github.com/Cap-go/CLI/compare/v4.2.0...v4.2.1) (2024-03-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* test file ([2094dc5](https://github.com/Cap-go/CLI/commit/2094dc58421410130f89965d5ea0c265dc563f54))
|
|
11
|
+
|
|
5
12
|
## [4.2.0](https://github.com/Cap-go/CLI/compare/v4.1.0...v4.2.0) (2024-03-04)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -61137,7 +61137,7 @@ var {
|
|
|
61137
61137
|
// package.json
|
|
61138
61138
|
var package_default = {
|
|
61139
61139
|
name: "@capgo/cli",
|
|
61140
|
-
version: "4.2.
|
|
61140
|
+
version: "4.2.1",
|
|
61141
61141
|
description: "A CLI to upload to capgo servers",
|
|
61142
61142
|
main: "dist/index.js",
|
|
61143
61143
|
bin: {
|