blumenjs 0.1.5 → 0.1.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.
- package/cli/postinstall.cjs +74 -0
- package/dist/cli/blumen.js +112 -8
- package/dist/cli/commands/create.js +120 -2
- package/dist/cli/commands/dev.js +120 -2
- package/dist/cli/utils.js +99 -0
- package/dist/templates/app/pages/templates/BlumenDashboard.tsx +358 -507
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blumenjs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "The React framework powered by Go. Lightning-fast SSR with the DX you deserve.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/cli/**/*",
|
|
12
12
|
"dist/templates/**/*",
|
|
13
|
+
"cli/postinstall.cjs",
|
|
13
14
|
"README.md",
|
|
14
15
|
"LICENSE"
|
|
15
16
|
],
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
"start": "tsx cli/blumen.ts start",
|
|
21
22
|
"create": "tsx cli/blumen.ts create",
|
|
22
23
|
"build:cli": "tsx cli/build-cli.ts",
|
|
24
|
+
"postinstall": "node cli/postinstall.cjs",
|
|
23
25
|
"prepublishOnly": "npm run build:cli",
|
|
24
26
|
"dev:legacy": "npm run routes && concurrently \"npm run dev:client\" \"npm run dev:ssr\" \"npm run dev:go\"",
|
|
25
27
|
"dev:client": "webpack serve --mode development",
|