create-message-kit 1.2.31 → 1.2.32
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -3,10 +3,11 @@ import { program } from "commander";
|
|
3
3
|
import { dirname, resolve } from "node:path";
|
4
4
|
import { fileURLToPath } from "node:url";
|
5
5
|
import { log, outro, text, select } from "@clack/prompts";
|
6
|
+
import { default as fs } from "fs-extra";
|
6
7
|
import { isCancel } from "@clack/prompts";
|
7
8
|
import { detect } from "detect-package-manager";
|
8
9
|
import pc from "picocolors";
|
9
|
-
const defVersion = "1.2.
|
10
|
+
const defVersion = "1.2.32";
|
10
11
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
11
12
|
|
12
13
|
// Read package.json to get the version
|