@capgo/cli 4.4.1 → 4.4.3
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/CHANGELOG.md +14 -0
- package/build.mjs +9 -9
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.4.3](https://github.com/Cap-go/CLI/compare/v4.4.2...v4.4.3) (2024-04-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* make node18 as min version ([d052828](https://github.com/Cap-go/CLI/commit/d05282878df55236a20b19bd6d8f99cbfe5bae20))
|
|
11
|
+
|
|
12
|
+
### [4.4.2](https://github.com/Cap-go/CLI/compare/v4.4.1...v4.4.2) (2024-04-23)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* downgrade min version to node 18 ([b2da10b](https://github.com/Cap-go/CLI/commit/b2da10bd3fdc54a43d01c1700cfa08937ea278fa))
|
|
18
|
+
|
|
5
19
|
### [4.4.1](https://github.com/Cap-go/CLI/compare/v4.4.0...v4.4.1) (2024-04-21)
|
|
6
20
|
|
|
7
21
|
|
package/build.mjs
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import * as esbuild from
|
|
1
|
+
import * as esbuild from "esbuild";
|
|
2
2
|
|
|
3
3
|
// Replace 'your-external-dependencies-here' with actual externals from your project
|
|
4
4
|
const external = [];
|
|
5
5
|
|
|
6
6
|
esbuild.build({
|
|
7
|
-
entryPoints: [
|
|
7
|
+
entryPoints: ["src/index.ts"],
|
|
8
8
|
bundle: true,
|
|
9
|
-
platform:
|
|
10
|
-
target:
|
|
9
|
+
platform: "node",
|
|
10
|
+
target: "node18",
|
|
11
11
|
external,
|
|
12
|
-
outdir:
|
|
13
|
-
sourcemap: process.env.NODE_ENV ===
|
|
12
|
+
outdir: "dist",
|
|
13
|
+
sourcemap: process.env.NODE_ENV === "development",
|
|
14
14
|
banner: {
|
|
15
|
-
js:
|
|
15
|
+
js: "#!/usr/bin/env node",
|
|
16
16
|
},
|
|
17
17
|
define: {
|
|
18
|
-
|
|
18
|
+
"process.env.SUPA_DB": '"production"',
|
|
19
19
|
},
|
|
20
20
|
loader: {
|
|
21
|
-
|
|
21
|
+
".ts": "ts",
|
|
22
22
|
},
|
|
23
23
|
}).catch(() => process.exit(1));
|
package/dist/index.js
CHANGED
|
@@ -91634,7 +91634,7 @@ var {
|
|
|
91634
91634
|
// package.json
|
|
91635
91635
|
var package_default = {
|
|
91636
91636
|
name: "@capgo/cli",
|
|
91637
|
-
version: "4.4.
|
|
91637
|
+
version: "4.4.3",
|
|
91638
91638
|
description: "A CLI to upload to capgo servers",
|
|
91639
91639
|
main: "dist/index.js",
|
|
91640
91640
|
bin: {
|
|
@@ -91650,7 +91650,7 @@ var package_default = {
|
|
|
91650
91650
|
homepage: "https://github.com/Cap-go/CLIl#readme",
|
|
91651
91651
|
engines: {
|
|
91652
91652
|
npm: ">=8.0.0",
|
|
91653
|
-
node: ">=
|
|
91653
|
+
node: ">=18.0.0"
|
|
91654
91654
|
},
|
|
91655
91655
|
keywords: [
|
|
91656
91656
|
"appflow alternative",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.3",
|
|
4
4
|
"description": "A CLI to upload to capgo servers",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"homepage": "https://github.com/Cap-go/CLIl#readme",
|
|
17
17
|
"engines": {
|
|
18
18
|
"npm": ">=8.0.0",
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=18.0.0"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"appflow alternative",
|