@kevinmarrec/create-app 0.6.5 → 0.6.7
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.js +2 -1
- package/package.json +1 -1
- package/template/npmrc +4 -0
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { x } from "tinyexec";
|
|
|
8
8
|
import fs from "node:fs/promises";
|
|
9
9
|
|
|
10
10
|
//#region package.json
|
|
11
|
-
var version = "0.6.
|
|
11
|
+
var version = "0.6.7";
|
|
12
12
|
|
|
13
13
|
//#endregion
|
|
14
14
|
//#region src/utils/fs.ts
|
|
@@ -36,6 +36,7 @@ async function scaffold(root) {
|
|
|
36
36
|
await fs_default.exists(root) ? await fs_default.empty(root) : await fs_default.mkdir(root);
|
|
37
37
|
await fs_default.cp(join(import.meta.dirname, "../template"), root, { recursive: true });
|
|
38
38
|
await fs_default.rename(join(root, "gitignore"), join(root, ".gitignore"));
|
|
39
|
+
await fs_default.rename(join(root, "npmrc"), join(root, ".npmrc"));
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kevinmarrec/create-app",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.7",
|
|
5
5
|
"packageManager": "bun@1.3.1",
|
|
6
6
|
"description": "CLI that scaffolds an opinionated Bun & Vue fullstack application.",
|
|
7
7
|
"author": "Kevin Marrec <kevin@marrec.io>",
|
package/template/npmrc
ADDED