create-bestax 2.0.0 → 2.0.1
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/README.md +10 -5
- package/package.json +7 -7
- package/templates/vite/package.json +7 -7
- package/templates/vite-ts/package.json +8 -8
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ npm create bestax@latest
|
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
You'll be asked to:
|
|
29
|
+
|
|
29
30
|
1. Enter a project name
|
|
30
31
|
2. Select a framework (Vite or Vite + TypeScript)
|
|
31
32
|
3. Choose a Bulma CSS flavor (Complete or Minimal)
|
|
@@ -38,9 +39,11 @@ npm create bestax@latest [project-directory] [options]
|
|
|
38
39
|
```
|
|
39
40
|
|
|
40
41
|
**Arguments:**
|
|
42
|
+
|
|
41
43
|
- `[project-directory]` - Optional project directory name
|
|
42
44
|
|
|
43
45
|
**Options:**
|
|
46
|
+
|
|
44
47
|
- `-t, --template <template>` - Template to use: `vite` or `vite-ts`
|
|
45
48
|
**Default:** `vite`
|
|
46
49
|
- `-b, --bulma <flavor>` - Bulma CSS flavor:
|
|
@@ -49,7 +52,7 @@ npm create bestax@latest [project-directory] [options]
|
|
|
49
52
|
- `no-helpers` - Without helper classes
|
|
50
53
|
- `no-helpers-prefixed` - Prefixed without helpers
|
|
51
54
|
- `no-dark-mode` - Without dark mode support
|
|
52
|
-
|
|
55
|
+
**Default:** `complete`
|
|
53
56
|
- `-i, --icon <library>` - Icon library:
|
|
54
57
|
- `none` - No icon library
|
|
55
58
|
- `fontawesome` - Font Awesome
|
|
@@ -57,11 +60,11 @@ npm create bestax@latest [project-directory] [options]
|
|
|
57
60
|
- `ionicons` - Ionicons
|
|
58
61
|
- `material-icons` - Material Icons
|
|
59
62
|
- `material-symbols` - Material Symbols
|
|
60
|
-
|
|
63
|
+
**Default:** `none`
|
|
61
64
|
- `-y, --yes` - Skip prompts and use defaults or provided options.
|
|
62
|
-
When used, the following defaults are selected unless overridden by flags:
|
|
63
|
-
- Template: `vite`
|
|
64
|
-
- Bulma flavor: `complete`
|
|
65
|
+
When used, the following defaults are selected unless overridden by flags:
|
|
66
|
+
- Template: `vite`
|
|
67
|
+
- Bulma flavor: `complete`
|
|
65
68
|
- Icon library: `none`
|
|
66
69
|
|
|
67
70
|
**Example:**
|
|
@@ -77,10 +80,12 @@ npm create bestax@latest my-app -y
|
|
|
77
80
|
## Templates
|
|
78
81
|
|
|
79
82
|
Available templates:
|
|
83
|
+
|
|
80
84
|
- `vite` - Vite + JavaScript
|
|
81
85
|
- `vite-ts` - Vite + TypeScript
|
|
82
86
|
|
|
83
87
|
Each template includes:
|
|
88
|
+
|
|
84
89
|
- Pre-configured bestax-bulma integration
|
|
85
90
|
- Bulma CSS v1.0.4
|
|
86
91
|
- Icon library support (Font Awesome, Material Design, etc.)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-bestax",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Create a new bestax-bulma project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -52,22 +52,22 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@allxsmith/bestax-bulma": "^2.6.1",
|
|
55
|
-
"chalk": "^5.
|
|
56
|
-
"commander": "^
|
|
55
|
+
"chalk": "^5.6.2",
|
|
56
|
+
"commander": "^14.0.2",
|
|
57
57
|
"figures": "^3.2.0",
|
|
58
58
|
"fs-extra": "^11.2.0",
|
|
59
59
|
"prompts": "^2.4.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@playwright/test": "^1.
|
|
62
|
+
"@playwright/test": "^1.57.0",
|
|
63
63
|
"@types/fs-extra": "^11.0.4",
|
|
64
64
|
"@types/jest": "^29.5.12",
|
|
65
65
|
"@types/node": "^20.11.20",
|
|
66
66
|
"@types/prompts": "^2.4.9",
|
|
67
67
|
"@types/wait-on": "^5.3.4",
|
|
68
|
-
"jest": "^
|
|
69
|
-
"ts-jest": "^29.
|
|
70
|
-
"typescript": "^5.
|
|
68
|
+
"jest": "^30.2.0",
|
|
69
|
+
"ts-jest": "^29.4.6",
|
|
70
|
+
"typescript": "^5.9.3",
|
|
71
71
|
"wait-on": "^8.0.1"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
@@ -10,20 +10,20 @@
|
|
|
10
10
|
"preview": "vite preview"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@allxsmith/bestax-bulma": "^2.
|
|
13
|
+
"@allxsmith/bestax-bulma": "^2.6.2",
|
|
14
14
|
"bulma": "^1.0.4",
|
|
15
|
-
"react": "^19.
|
|
16
|
-
"react-dom": "^19.
|
|
15
|
+
"react": "^19.2.3",
|
|
16
|
+
"react-dom": "^19.2.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@eslint/js": "^9.
|
|
19
|
+
"@eslint/js": "^9.39.2",
|
|
20
20
|
"@types/react": "^19.1.13",
|
|
21
21
|
"@types/react-dom": "^19.1.9",
|
|
22
|
-
"@vitejs/plugin-react": "^5.
|
|
23
|
-
"eslint": "^9.
|
|
22
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
23
|
+
"eslint": "^9.39.2",
|
|
24
24
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
25
25
|
"eslint-plugin-react-refresh": "^0.4.22",
|
|
26
26
|
"globals": "^16.4.0",
|
|
27
|
-
"vite": "^7.1
|
|
27
|
+
"vite": "^7.3.1"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -10,21 +10,21 @@
|
|
|
10
10
|
"preview": "vite preview"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@allxsmith/bestax-bulma": "^2.
|
|
13
|
+
"@allxsmith/bestax-bulma": "^2.6.2",
|
|
14
14
|
"bulma": "^1.0.4",
|
|
15
|
-
"react": "^19.
|
|
16
|
-
"react-dom": "^19.
|
|
15
|
+
"react": "^19.2.3",
|
|
16
|
+
"react-dom": "^19.2.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@eslint/js": "^9.
|
|
19
|
+
"@eslint/js": "^9.39.2",
|
|
20
20
|
"@types/react": "^19.1.13",
|
|
21
21
|
"@types/react-dom": "^19.1.9",
|
|
22
|
-
"@vitejs/plugin-react": "^5.
|
|
23
|
-
"eslint": "^9.
|
|
22
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
23
|
+
"eslint": "^9.39.2",
|
|
24
24
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
25
25
|
"eslint-plugin-react-refresh": "^0.4.22",
|
|
26
26
|
"globals": "^16.4.0",
|
|
27
|
-
"typescript": "^5.9.
|
|
28
|
-
"vite": "^7.1
|
|
27
|
+
"typescript": "^5.9.3",
|
|
28
|
+
"vite": "^7.3.1"
|
|
29
29
|
}
|
|
30
30
|
}
|