create-edgebase 0.1.0 → 0.1.2

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 CHANGED
@@ -137,9 +137,9 @@ npx edgebase typegen
137
137
 
138
138
  ## Related Packages
139
139
 
140
- - [`@edgebase-fun/cli`](https://www.npmjs.com/package/@edgebase-fun/cli)
140
+ - [`@edge-base/cli`](https://www.npmjs.com/package/@edge-base/cli)
141
141
  The underlying CLI package used after project creation
142
- - [`@edgebase-fun/web`](https://www.npmjs.com/package/@edgebase-fun/web)
142
+ - [`@edge-base/web`](https://www.npmjs.com/package/@edge-base/web)
143
143
  Browser SDK for your app code
144
144
 
145
145
  ## License
@@ -95,7 +95,7 @@ const targetDirArg = forwardedArgs.find((arg) => !arg.startsWith('-')) ?? '.';
95
95
  const projectDir = resolve(process.cwd(), targetDirArg);
96
96
  const packageManager = detectPackageManager();
97
97
  const skipInstall = process.env.EDGEBASE_CREATE_SKIP_INSTALL === '1';
98
- const cliPackageJsonPath = require.resolve('@edgebase-fun/cli/package.json');
98
+ const cliPackageJsonPath = require.resolve('@edge-base/cli/package.json');
99
99
  const cliEntryPath = join(dirname(cliPackageJsonPath), 'dist', 'index.js');
100
100
 
101
101
  runOrExit(process.execPath, [cliEntryPath, 'init', ...scaffoldArgs], {
package/llms.txt CHANGED
@@ -6,7 +6,7 @@ Use this file as a quick-reference contract for AI coding assistants working wit
6
6
 
7
7
  `create-edgebase` is the bootstrap package behind `npm create edgebase@latest`.
8
8
 
9
- It is not the long-lived runtime CLI package. After scaffolding, day-to-day commands come from the local `@edgebase-fun/cli` install inside the generated project.
9
+ It is not the long-lived runtime CLI package. After scaffolding, day-to-day commands come from the local `@edge-base/cli` install inside the generated project.
10
10
 
11
11
  ## Source Of Truth
12
12
 
@@ -50,7 +50,7 @@ EDGEBASE_CREATE_SKIP_INSTALL=1 npm create edgebase@latest my-app -- --no-dev
50
50
 
51
51
  ## Behavior Notes
52
52
 
53
- - scaffolds a project by delegating to `@edgebase-fun/cli init`
53
+ - scaffolds a project by delegating to `@edge-base/cli init`
54
54
  - installs local dependencies unless `EDGEBASE_CREATE_SKIP_INSTALL=1`
55
55
  - starts `npm run dev` unless `--no-dev` is passed
56
56
  - forwards `--no-open` to the local development flow
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-edgebase",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Bootstrap a new EdgeBase project",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -31,6 +31,6 @@
31
31
  "node": ">=20.19.0"
32
32
  },
33
33
  "dependencies": {
34
- "@edgebase-fun/cli": "0.1.0"
34
+ "@edge-base/cli": "0.1.2"
35
35
  }
36
36
  }