create-moria 0.3.1 → 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.
@@ -1,4 +1,4 @@
1
1
 
2
- > create-moria@0.3.1 build C:\Codes\node\2026\github\moriajs\packages\create-moria
2
+ > create-moria@0.3.2 build C:\Codes\node\2026\github\moriajs\packages\create-moria
3
3
  > tsc
4
4
 
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ import pc from 'picocolors';
17
17
  import prompts from 'prompts';
18
18
  import { writeFileSync, mkdirSync, existsSync } from 'node:fs';
19
19
  import { join, resolve } from 'node:path';
20
- const VERSION = '0.3.0';
20
+ const VERSION = '0.3.2';
21
21
  export const cli = cac('create-moria');
22
22
  // ─── Template file generators ─────────────────────────
23
23
  function tsconfigContent() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-moria",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "description": "Create a new MoriaJS project",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -19,7 +19,7 @@ import prompts from 'prompts';
19
19
  import { writeFileSync, mkdirSync, existsSync } from 'node:fs';
20
20
  import { join, resolve } from 'node:path';
21
21
 
22
- const VERSION = '0.3.0';
22
+ const VERSION = '0.3.2';
23
23
 
24
24
  export const cli = cac('create-moria');
25
25