create-velox-app 0.3.0 → 0.3.1

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.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * CLI tool for bootstrapping new VeloxTS applications with a default template.
5
5
  * Provides an interactive setup experience similar to create-next-app.
6
6
  */
7
- export declare const CREATE_VERSION = "0.1.0";
7
+ export declare const CREATE_VERSION = "0.3.1";
8
8
  /**
9
9
  * Main scaffolding function that creates a new VeloxTS project
10
10
  */
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import { generateConfigApp, generateConfigIndex, generateDatabaseIndex, generate
13
13
  // ============================================================================
14
14
  // Constants
15
15
  // ============================================================================
16
- export const CREATE_VERSION = '0.1.0';
16
+ export const CREATE_VERSION = '0.3.1';
17
17
  // ============================================================================
18
18
  // Main Scaffolder
19
19
  // ============================================================================
@@ -8,7 +8,7 @@
8
8
  * VeloxTS framework version for generated projects.
9
9
  * This is automatically updated during releases via changesets.
10
10
  */
11
- export declare const VELOXTS_VERSION = "0.2.2";
11
+ export declare const VELOXTS_VERSION = "0.3.1";
12
12
  export interface ProjectTemplate {
13
13
  projectName: string;
14
14
  packageManager: 'npm' | 'pnpm' | 'yarn';
package/dist/templates.js CHANGED
@@ -11,14 +11,14 @@
11
11
  * VeloxTS framework version for generated projects.
12
12
  * This is automatically updated during releases via changesets.
13
13
  */
14
- export const VELOXTS_VERSION = '0.2.2';
14
+ export const VELOXTS_VERSION = '0.3.1';
15
15
  // ============================================================================
16
16
  // Package.json Template
17
17
  // ============================================================================
18
18
  export function generatePackageJson(template) {
19
19
  return JSON.stringify({
20
20
  name: template.projectName,
21
- version: '0.1.0',
21
+ version: '0.0.1',
22
22
  description: 'A VeloxTS application',
23
23
  type: 'module',
24
24
  main: 'dist/index.js',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-velox-app",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Project scaffolder for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",