@capgo/cli 4.4.2 → 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 +7 -0
- package/build.mjs +9 -9
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.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
|
+
|
|
5
12
|
### [4.4.2](https://github.com/Cap-go/CLI/compare/v4.4.1...v4.4.2) (2024-04-23)
|
|
6
13
|
|
|
7
14
|
|
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: {
|