@khoaha/spek-cli 1.0.5 → 1.0.7

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 (2) hide show
  1. package/bin/cli.js +1 -6
  2. package/package.json +3 -3
package/bin/cli.js CHANGED
@@ -1,7 +1,2 @@
1
1
  #!/usr/bin/env node
2
-
3
- // Windows-compatible CLI wrapper
4
- import('../dist/index.js').catch((error) => {
5
- console.error('Failed to load CLI:', error);
6
- process.exit(1);
7
- });
2
+ import('../dist/index.js');
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@khoaha/spek-cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "CLI tool to download and extract Figma design specs from Directus",
5
5
  "type": "module",
6
6
  "files": [
7
- "dist",
8
7
  "bin",
8
+ "dist",
9
9
  "README.md",
10
10
  "QUICKSTART.md"
11
11
  ],
12
12
  "bin": {
13
- "spek-cli": "./bin/cli.js"
13
+ "spek-cli": "bin/cli.js"
14
14
  },
15
15
  "scripts": {
16
16
  "build": "tsc",