create-velox-app 0.3.0 → 0.3.2
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +2 -2
- package/package.json +1 -1
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
|
|
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
|
|
16
|
+
export const CREATE_VERSION = '0.3.1';
|
|
17
17
|
// ============================================================================
|
|
18
18
|
// Main Scaffolder
|
|
19
19
|
// ============================================================================
|
package/dist/templates.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
|
21
|
+
version: '0.0.1',
|
|
22
22
|
description: 'A VeloxTS application',
|
|
23
23
|
type: 'module',
|
|
24
24
|
main: 'dist/index.js',
|