create-nocdn-app 0.0.8 → 0.0.9
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 +3 -9
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
# create-nocdn-app
|
|
2
2
|
|
|
3
|
-
To
|
|
3
|
+
To use:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
|
|
6
|
+
bunx create-nocdn-app
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
bun run index.ts
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
This project was created using `bun init` in bun v1.3.5. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
|
|
9
|
+
This will ask you for a project name and create a new Next.js (App Router) project with Tailwind + TypeScript + Prettier + Lucide + some prettier plugins like import sorting and tailwind class sorting.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nocdn-app",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Scaffold Next.js
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "Scaffold Next.js my preferred way",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -19,9 +19,10 @@
|
|
|
19
19
|
"create-nocdn-app",
|
|
20
20
|
"next.js",
|
|
21
21
|
"scaffold",
|
|
22
|
-
"template"
|
|
22
|
+
"template",
|
|
23
|
+
"nocdn"
|
|
23
24
|
],
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@clack/prompts": "
|
|
26
|
+
"@clack/prompts": "latest"
|
|
26
27
|
}
|
|
27
28
|
}
|