generator-kodly-react-app 1.0.11 → 1.0.12

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.
@@ -84,3 +84,7 @@ coverage
84
84
  *.pem
85
85
  .vite
86
86
  .swc
87
+
88
+ ### Kodly ###
89
+ .kodly/
90
+ .kodlyspec
@@ -1,7 +1,7 @@
1
1
  import { defineConfig } from '@hey-api/openapi-ts';
2
2
  import { loadEnv } from 'vite';
3
3
 
4
- // Get the mode from environment variable (set by npm scripts)
4
+ // Get the mode from environment variable (set by pnpm scripts)
5
5
  const mode = process.env.MODE || 'development';
6
6
 
7
7
  // Load environment variables from .env files
@@ -3,6 +3,7 @@
3
3
  "private": true,
4
4
  "type": "module",
5
5
  "version": "0.0.1",
6
+ "packageManager": "pnpm@10.28.0",
6
7
  "scripts": {
7
8
  "generate-routes": "tsr generate",
8
9
  "watch-routes": "tsr watch",
@@ -11,8 +12,8 @@
11
12
  "vite:sandbox": "vite --mode sandbox",
12
13
  "dev": "npm-run-all --parallel watch-routes vite:dev",
13
14
  "dev:sandbox": "npm-run-all --parallel watch-routes vite:sandbox",
14
- "build": "npm run generate-routes && vite build --mode dev && tsc",
15
- "build:sandbox": "npm run generate-routes && vite build --mode sandbox && tsc",
15
+ "build": "pnpm run generate-routes && vite build --mode dev && tsc",
16
+ "build:sandbox": "pnpm run generate-routes && vite build --mode sandbox && tsc",
16
17
  "serve": "vite preview",
17
18
  "openapi-ts:dev": "MODE=dev openapi-ts",
18
19
  "openapi-ts:sandbox": "MODE=sandbox openapi-ts"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-kodly-react-app",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "A Yeoman generator for creating React.js applications with Vite, TanStack Router, authentication, and i18n",
5
5
  "main": "index.js",
6
6
  "type": "module",