create-flow-os 0.0.1-dev.1771665849 → 0.0.1-dev.1771666003
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 +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,4 +4,4 @@ CLI per creare progetti Flow. Package npm: **create-flow-os**. I progetti genera
|
|
|
4
4
|
|
|
5
5
|
**Uso:** `bun create flow-os [nome-progetto]` oppure `bunx create-flow-os [nome-progetto]`.
|
|
6
6
|
|
|
7
|
-
**Dev (chi sviluppa il framework):** da
|
|
7
|
+
**Dev (chi sviluppa il framework):** da root: `bun run publish:dev` (tutti i package con tag **dev**); per release stabile: `bun run release` (tag **latest**, aumenta le versioni nei package prima). Per provare la versione dev: `bun create flow-os mio-app --dev`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-flow-os",
|
|
3
|
-
"version": "0.0.1-dev.
|
|
3
|
+
"version": "0.0.1-dev.1771666003",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-flow-os": "bin/index.js"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"create": "bun index.ts",
|
|
18
18
|
"build": "bun build ./index.ts --outdir=bin --target=bun",
|
|
19
19
|
"publish:dev": "bun publish-dev.ts",
|
|
20
|
-
"
|
|
20
|
+
"release": "bun publish.ts"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@clack/prompts": "^0.8.2",
|