create-next-app 16.1.0-canary.9 → 16.1.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/dist/index.js +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-next-app",
|
|
3
|
-
"version": "16.1.0
|
|
3
|
+
"version": "16.1.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"react",
|
|
6
6
|
"next",
|
|
@@ -22,10 +22,9 @@
|
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "ncc build ./index.ts -w -o dist/",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"prebuild": "node ../../scripts/rm.mjs dist",
|
|
26
|
+
"build": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
|
|
27
27
|
"prepublishOnly": "cd ../../ && turbo run build",
|
|
28
|
-
"build": "pnpm release",
|
|
29
28
|
"lint-fix": "pnpm prettier -w --plugin prettier-plugin-tailwindcss 'templates/*-tw/{ts,js}/{app,pages}/**/*.{js,ts,tsx}'"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|