create-solidrt 0.0.50 → 0.0.51

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/package.json +2 -1
  2. package/src/main.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "create-solidrt",
3
- "version": "0.0.50",
3
+ "version": "0.0.51",
4
4
  "license": "MIT",
5
+ "funding": "https://github.com/sponsors/wellawaretech",
5
6
  "author": "Antoine van Wel",
6
7
  "type": "module",
7
8
  "bin": {
package/src/main.ts CHANGED
@@ -18,7 +18,7 @@ if (!dir || dir.startsWith("-")) {
18
18
  // unpublished 0.0.0 workspace version, which has no npm release to pin to.
19
19
  let cli = pkg.version === "0.0.0" ? "@solidrt/cli@latest" : `@solidrt/cli@${pkg.version}`
20
20
 
21
- // Forward any trailing flags (e.g. --with @solidrt/components) to `srt init` untouched.
21
+ // Forward any trailing flags to `srt init` untouched.
22
22
  let extra = process.argv.slice(3)
23
23
  let proc = Bun.spawnSync(["bun", "x", cli, "init", dir, ...extra], {
24
24
  stdin: "inherit",