@capgo/cli 4.12.12 → 4.12.13

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.
@@ -0,0 +1,25 @@
1
+ name: autofix.ci # needed to securely identify the workflow
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches: [ "main" ]
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ autofix:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ - name: Setup bun
17
+ uses: oven-sh/setup-bun@v1.1.1
18
+ with:
19
+ bun-version: latest
20
+ - name: Install dependencies
21
+ run: bun install
22
+ - name: Lint
23
+ id: lint_code
24
+ run: npm run lint
25
+ - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
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.12.13](https://github.com/Cap-go/CLI/compare/v4.12.12...v4.12.13) (2024-07-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add autofix ([3a226cf](https://github.com/Cap-go/CLI/commit/3a226cfeb3ab3ccc6c73b067b9e8899bb8189286))
11
+
5
12
  ### [4.12.12](https://github.com/Cap-go/CLI/compare/v4.12.11...v4.12.12) (2024-07-15)
6
13
 
7
14
  ### [4.12.11](https://github.com/Cap-go/CLI/compare/v4.12.10...v4.12.11) (2024-07-14)
package/dist/index.js CHANGED
@@ -86219,7 +86219,7 @@ var {
86219
86219
  // package.json
86220
86220
  var package_default = {
86221
86221
  name: "@capgo/cli",
86222
- version: "4.12.12",
86222
+ version: "4.12.13",
86223
86223
  description: "A CLI to upload to capgo servers",
86224
86224
  author: "github.com/riderx",
86225
86225
  license: "Apache 2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.12.12",
3
+ "version": "4.12.13",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "author": "github.com/riderx",
6
6
  "license": "Apache 2.0",