@connectycube/react-ui-kit 0.0.2 → 0.0.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.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +7 -6
package/bin/cli.js CHANGED
@@ -4,7 +4,7 @@ import path from 'path';
4
4
  import { fileURLToPath } from 'url';
5
5
 
6
6
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
7
- const commandsDir = path.resolve(__dirname, '../commands');
7
+ const commandsDir = path.resolve(__dirname, '../cmd');
8
8
  const args = process.argv.slice(2);
9
9
  const cmd = args[0];
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectycube/react-ui-kit",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Simple React UI Kit generator with TSX/JSX",
5
5
  "homepage": "https://github.com/ConnectyCube/react-ui-kit#readme",
6
6
  "bugs": {
@@ -43,7 +43,7 @@
43
43
  "build": "rollup -c",
44
44
  "format": "node ./scripts/format.js",
45
45
  "transform": "node ./scripts/transform.js",
46
- "version": "node ./scripts/bump-version.cjs",
46
+ "version": "node ./scripts/bump-version.js",
47
47
  "version:patch": "npm run version patch",
48
48
  "version:minor": "npm run version minor",
49
49
  "version:major": "npm run version major",
@@ -58,6 +58,11 @@
58
58
  "tsx",
59
59
  "jsx"
60
60
  ],
61
+ "dependencies": {
62
+ "execa": "^9.6.0",
63
+ "fs-extra": "^11.3.2",
64
+ "prompts": "^2.4.2"
65
+ },
61
66
  "peerDependencies": {
62
67
  "clsx": "*",
63
68
  "react": ">=18",
@@ -78,12 +83,8 @@
78
83
  "eslint": "^9.38.0",
79
84
  "eslint-plugin-react-hooks": "^7.0.0",
80
85
  "eslint-plugin-react-refresh": "^0.4.24",
81
- "execa": "^9.6.0",
82
86
  "fast-glob": "^3.3.3",
83
- "fs-extra": "^11.3.2",
84
- "globals": "^16.4.0",
85
87
  "prettier": "^3.6.2",
86
- "prompts": "^2.4.2",
87
88
  "rollup": "^4.52.5",
88
89
  "rollup-plugin-peer-deps-external": "^2.2.4",
89
90
  "tslib": "^2.8.1",