@gravito/pulse 3.3.0 → 3.4.0

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.
Files changed (3) hide show
  1. package/dist/index.js +15496 -12464
  2. package/package.json +8 -6
  3. package/dist/src/index.js +0 -5098
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@gravito/pulse",
3
- "version": "3.3.0",
3
+ "sideEffects": false,
4
+ "version": "3.4.0",
4
5
  "description": "The official CLI for Gravito Galaxy Architecture. Scaffold projects and manage your universe.",
5
6
  "bin": {
6
7
  "gravito": "bin/gravito.mjs"
7
8
  },
8
9
  "type": "module",
9
10
  "scripts": {
10
- "build": "bun build ./src/index.ts --outdir ./dist --target bun --external giget --external cac --external @clack/prompts --external picocolors",
11
+ "build": "bun build ./src/index.ts --outdir ./dist --target bun --external giget --external cac --external @clack/prompts --external @gravito/chromatic",
11
12
  "dev": "bun run ./src/index.ts",
12
13
  "test": "bun test --timeout=10000",
13
14
  "test:coverage": "bun test --timeout=10000 --coverage --coverage-reporter=lcov --coverage-dir coverage && bun run --bun scripts/check-coverage.ts",
@@ -27,14 +28,14 @@
27
28
  },
28
29
  "dependencies": {
29
30
  "@clack/prompts": "^0.7.0",
30
- "@gravito/scaffold": "^3.2.0",
31
+ "@gravito/chromatic": "workspace:*",
32
+ "@gravito/scaffold": "workspace:*",
31
33
  "cac": "^6.7.14",
32
34
  "giget": "^1.2.5",
33
- "node-fetch-native": "^1.6.7",
34
- "picocolors": "^1.0.0"
35
+ "node-fetch-native": "^1.6.7"
35
36
  },
36
37
  "peerDependencies": {
37
- "@gravito/core": "^1.6.1"
38
+ "@gravito/core": "^2.0.0"
38
39
  },
39
40
  "author": "Carl Lee <carllee0520@gmail.com>",
40
41
  "license": "MIT",
@@ -45,6 +46,7 @@
45
46
  "directory": "packages/cli"
46
47
  },
47
48
  "devDependencies": {
49
+ "@gravito/core": "workspace:*",
48
50
  "bun-types": "latest"
49
51
  }
50
52
  }