create-weave 0.2.0 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-weave",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Scaffold a new Weave app — `npm create weave my-app` (also pnpm/yarn create).",
5
5
  "type": "module",
6
6
  "bin": {
@@ -0,0 +1,14 @@
1
+ # pnpm pre-approves these dependencies' build scripts so `pnpm install` runs
2
+ # without the interactive "Ignored build scripts" prompt. esbuild powers
3
+ # `weave build`; @parcel/watcher powers `weave dev`'s file watching. Both are
4
+ # trusted, widely-used packages. (npm and yarn run these automatically and
5
+ # ignore this file.)
6
+ #
7
+ # `onlyBuiltDependencies` is the documented allow-list (pnpm 10+); `allowBuilds`
8
+ # is pnpm 11's per-package form, which also overrides a stricter global config.
9
+ onlyBuiltDependencies:
10
+ - esbuild
11
+ - '@parcel/watcher'
12
+ allowBuilds:
13
+ esbuild: true
14
+ '@parcel/watcher': true