@capgo/cli 4.12.12-beta.0 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.12.12-beta.0",
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",
@@ -32,11 +32,11 @@
32
32
  "node": ">=18.0.0"
33
33
  },
34
34
  "scripts": {
35
- "build": "ncc build",
36
- "dev": "NODE_ENV=development ncc build",
35
+ "build": "node build.mjs",
36
+ "dev": "NODE_ENV=development node build.mjs",
37
37
  "no-debug": "node dist/index.js",
38
38
  "test": "npx --yes ts-node -T src/index.ts",
39
- "dev-build": "SUPA_DB=development ncc build",
39
+ "dev-build": "SUPA_DB=development node build.mjs",
40
40
  "pack": "pkg",
41
41
  "types": "npx --yes supabase gen types typescript --project-id=xvwzpoazmxkqosrdewyv > src/types/supabase.types.ts",
42
42
  "test_rls": "ts-node ./test/test_headers_rls.ts",
@@ -51,7 +51,6 @@
51
51
  "@manypkg/find-root": "^2.2.1",
52
52
  "@supabase/supabase-js": "^2.43.5",
53
53
  "@tomasklaen/checksum": "^1.1.0",
54
- "@vercel/ncc": "^0.38.1",
55
54
  "adm-zip": "^0.5.14",
56
55
  "ci-info": "^4.0.0",
57
56
  "commander": "12.1.0",
package/tsconfig.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "esModuleInterop": true,
7
7
  "skipLibCheck": true,
8
8
  "resolveJsonModule": true,
9
- "target": "es2015",
9
+ "target": "es6",
10
10
  "moduleResolution": "node",
11
11
  "sourceMap": true,
12
12
  "outDir": "dist",
package/vercel-ncc.js DELETED
@@ -1,18 +0,0 @@
1
- require('@vercel/ncc')('/src/index.ts', {
2
- cache: false,
3
- externals: ["externalpackage"],
4
- filterAssetBase: process.cwd(),
5
- minify: false,
6
- sourceMap: false,
7
- assetBuilds: false,
8
- sourceMapRegister: true,
9
- watch: false,
10
- license: '',
11
- target: 'es2015',
12
- v8cache: false,
13
- quiet: false,
14
- debugLog: false
15
- }).then(({ code }) => {
16
- console.log(code);
17
-
18
- })