create-nextly-app 0.0.2-alpha.11 → 0.0.2-alpha.13
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/{chunk-RPGFJSDP.mjs → chunk-AATWR2UA.mjs} +50 -18
- package/dist/chunk-AATWR2UA.mjs.map +1 -0
- package/dist/cli.cjs +49 -17
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs +48 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
- package/templates/base/next.config.ts +11 -17
- package/dist/chunk-RPGFJSDP.mjs.map +0 -1
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nextly-app",
|
|
3
|
-
"version": "0.0.2-alpha.
|
|
3
|
+
"version": "0.0.2-alpha.13",
|
|
4
4
|
"description": "CLI to scaffold Nextly in your Next.js project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"typescript": "^5.9.3",
|
|
43
43
|
"vite-tsconfig-paths": "^5.1.4",
|
|
44
44
|
"vitest": "^4.0.8",
|
|
45
|
-
"@nextlyhq/eslint-config": "0.0.2-alpha.
|
|
46
|
-
"@nextlyhq/telemetry": "0.0.2-alpha.
|
|
47
|
-
"@nextlyhq/tsconfig": "0.0.2-alpha.
|
|
45
|
+
"@nextlyhq/eslint-config": "0.0.2-alpha.13",
|
|
46
|
+
"@nextlyhq/telemetry": "0.0.2-alpha.13",
|
|
47
|
+
"@nextlyhq/tsconfig": "0.0.2-alpha.13"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=20.0.0"
|
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
import type { NextConfig } from "next";
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"better-sqlite3",
|
|
15
|
-
"bcryptjs",
|
|
16
|
-
"sharp",
|
|
17
|
-
"esbuild",
|
|
18
|
-
],
|
|
19
|
-
};
|
|
3
|
+
/**
|
|
4
|
+
* Minimal base `next.config.ts` for bundled templates.
|
|
5
|
+
*
|
|
6
|
+
* This file is intentionally left minimal (no adapter whitelist). The
|
|
7
|
+
* scaffolder will generate or patch a database-specific `next.config.ts`
|
|
8
|
+
* that includes only the selected adapter and driver in
|
|
9
|
+
* `serverExternalPackages`. Keeping the base file minimal avoids
|
|
10
|
+
* advertising adapters the user didn't choose and prevents misleading
|
|
11
|
+
* generated projects.
|
|
12
|
+
*/
|
|
13
|
+
const nextConfig: NextConfig = {};
|
|
20
14
|
|
|
21
15
|
export default nextConfig;
|