create-barefootjs 0.12.0 → 0.14.0

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/dist/index.js +3 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -64,7 +64,9 @@ Options:
64
64
 
65
65
  Forwarded to \`bf init\`:
66
66
  --adapter <name> Adapter to use (default: hono)
67
- --css <name> CSS library to use (default: unocss)
67
+ --css <name> CSS setup to use: "unocss" (default) or "none"
68
+ ("none" = bring your own CSS: no UnoCSS, no UI
69
+ components, just the compiler output)
68
70
 
69
71
  After scaffolding:
70
72
  cd <project-name>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-barefootjs",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "description": "Scaffold a new BarefootJS app — `npm create barefootjs@latest <dir>`",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "postpack": "node ../../scripts/swap-publish-config.mjs unpack"
22
22
  },
23
23
  "dependencies": {
24
- "@barefootjs/cli": "0.12.0"
24
+ "@barefootjs/cli": "0.14.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "esbuild": "^0.25.0",