create-velox-app 0.6.72 → 0.6.73

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # create-velox-app
2
2
 
3
+ ## 0.6.73
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(create): add @veloxts/auth as explicit dependency in auth template
8
+
3
9
  ## 0.6.72
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-velox-app",
3
- "version": "0.6.72",
3
+ "version": "0.6.73",
4
4
  "description": "Project scaffolder for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,6 +20,7 @@
20
20
  "@prisma/adapter-better-sqlite3": "7.2.0",
21
21
  "@prisma/client": "7.2.0",
22
22
  "@prisma/client-runtime-utils": "7.2.0",
23
+ "@veloxts/auth": "__VELOXTS_VERSION__",
23
24
  "@veloxts/velox": "__VELOXTS_VERSION__",
24
25
  "bcrypt": "6.0.0",
25
26
  "better-sqlite3": "12.5.0",
@@ -7,4 +7,7 @@ export default defineConfig({
7
7
  clean: true,
8
8
  dts: false,
9
9
  sourcemap: true,
10
+ // Don't bundle dependencies - let Node.js resolve them at runtime
11
+ // This avoids issues with native modules and dynamic requires
12
+ skipNodeModulesBundle: true,
10
13
  });