create-nextly-app 0.0.2-alpha.4 → 0.0.2-alpha.6

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.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { createRequire } from 'module';
2
- export { createNextly } from './chunk-AYJ2RKVJ.mjs';
2
+ export { createNextly } from './chunk-6NVRVAZA.mjs';
3
3
 
4
4
  createRequire(import.meta.url);
5
5
  //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nextly-app",
3
- "version": "0.0.2-alpha.4",
3
+ "version": "0.0.2-alpha.6",
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.3",
46
- "@nextlyhq/telemetry": "0.0.2-alpha.3",
47
- "@nextlyhq/tsconfig": "0.0.2-alpha.3"
45
+ "@nextlyhq/eslint-config": "0.0.2-alpha.5",
46
+ "@nextlyhq/telemetry": "0.0.2-alpha.5",
47
+ "@nextlyhq/tsconfig": "0.0.2-alpha.5"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=20.0.0"
@@ -1,15 +1,6 @@
1
1
  "use client";
2
2
 
3
- // Plugin-side admin imports. Every scaffold ships @nextlyhq/plugin-form-builder
4
- // as a dependency (see packages/create-nextly-app utils/template.ts). These
5
- // three lines register the plugin's custom admin field components and load its
6
- // CSS so the Forms collection's drag-and-drop field builder and Submissions
7
- // filter UI render correctly. Without them, Forms still appears in the sidebar
8
- // but the builder falls back to plain JSON/text inputs.
9
3
  import "@nextlyhq/admin/style.css";
10
- import "@nextlyhq/plugin-form-builder/admin";
11
- import "@nextlyhq/plugin-form-builder/styles/builder.css";
12
- import "@nextlyhq/plugin-form-builder/styles/submissions-filter.css";
13
4
  import { RootLayout, QueryProvider, ErrorBoundary } from "@nextlyhq/admin";
14
5
 
15
6
  export default function AdminPage() {