create-webjs 0.8.6 → 0.9.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.
- package/README.md +1 -1
- package/bin/create-webjs.js +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Scaffold a new [webjs](https://webjs.dev) app with one command, no global instal
|
|
|
5
5
|
```sh
|
|
6
6
|
npm create webjs@latest my-app
|
|
7
7
|
cd my-app && npm run dev
|
|
8
|
-
# → http://localhost:
|
|
8
|
+
# → http://localhost:8080
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
`npm create webjs@latest` is npm's documented shorthand for `npx create-webjs@latest`; both routes dispatch to this same package. Under the hood it calls [`@webjsdev/cli`](https://www.npmjs.com/package/@webjsdev/cli)'s `scaffoldApp()` and auto-runs the detected package manager's install in the new directory.
|
package/bin/create-webjs.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-webjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Scaffold a new webjs app. `npm create webjs@latest my-app`.",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@webjsdev/cli": "^0.
|
|
14
|
+
"@webjsdev/cli": "^0.9.0"
|
|
15
15
|
},
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|