@capgo/cli 4.4.2 → 4.4.4

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 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.4](https://github.com/Cap-go/CLI/compare/v4.4.3...v4.4.4) (2024-04-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * use nodejs 18 compat version ([06c478a](https://github.com/Cap-go/CLI/commit/06c478ae61c1efb9a6e39d7a407b00e0e0c804d4))
11
+
12
+ ### [4.4.3](https://github.com/Cap-go/CLI/compare/v4.4.2...v4.4.3) (2024-04-23)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * make node18 as min version ([d052828](https://github.com/Cap-go/CLI/commit/d05282878df55236a20b19bd6d8f99cbfe5bae20))
18
+
5
19
  ### [4.4.2](https://github.com/Cap-go/CLI/compare/v4.4.1...v4.4.2) (2024-04-23)
6
20
 
7
21
 
package/build.mjs CHANGED
@@ -1,23 +1,23 @@
1
- import * as esbuild from 'esbuild'
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: ['src/index.ts'],
7
+ entryPoints: ["src/index.ts"],
8
8
  bundle: true,
9
- platform: 'node',
10
- target: 'node20',
9
+ platform: "node",
10
+ target: "node18",
11
11
  external,
12
- outdir: 'dist',
13
- sourcemap: process.env.NODE_ENV === 'development',
12
+ outdir: "dist",
13
+ sourcemap: process.env.NODE_ENV === "development",
14
14
  banner: {
15
- js: '#!/usr/bin/env node',
15
+ js: "#!/usr/bin/env node",
16
16
  },
17
17
  define: {
18
- 'process.env.SUPA_DB': '"production"',
18
+ "process.env.SUPA_DB": '"production"',
19
19
  },
20
20
  loader: {
21
- '.ts': 'ts',
21
+ ".ts": "ts",
22
22
  },
23
23
  }).catch(() => process.exit(1));
package/bun.lockb CHANGED
Binary file
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.2",
91637
+ version: "4.4.4",
91638
91638
  description: "A CLI to upload to capgo servers",
91639
91639
  main: "dist/index.js",
91640
91640
  bin: {
@@ -91679,7 +91679,7 @@ var package_default = {
91679
91679
  dependencies: {
91680
91680
  "@aws-sdk/client-s3": "^3.540.0",
91681
91681
  "@capacitor/cli": "5.7.0",
91682
- "@capgo/find-package-manager": "0.0.10",
91682
+ "@capgo/find-package-manager": "0.0.11",
91683
91683
  "@clack/prompts": "^0.7.0",
91684
91684
  "@supabase/supabase-js": "^2.39.3",
91685
91685
  "@tomasklaen/checksum": "^1.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.4.2",
3
+ "version": "4.4.4",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -45,7 +45,7 @@
45
45
  "dependencies": {
46
46
  "@aws-sdk/client-s3": "^3.540.0",
47
47
  "@capacitor/cli": "5.7.0",
48
- "@capgo/find-package-manager": "0.0.10",
48
+ "@capgo/find-package-manager": "0.0.11",
49
49
  "@clack/prompts": "^0.7.0",
50
50
  "@supabase/supabase-js": "^2.39.3",
51
51
  "@tomasklaen/checksum": "^1.1.0",