create-supaslidev 0.4.0 → 0.4.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/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/dist/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ import pc from "picocolors";
|
|
|
10
10
|
import { tmpdir } from "node:os";
|
|
11
11
|
//#endregion
|
|
12
12
|
//#region src/version.ts
|
|
13
|
-
const CLI_VERSION = "0.4.
|
|
13
|
+
const CLI_VERSION = "0.4.1";
|
|
14
14
|
const PACKAGE_NAME = "@supaslidev/cli";
|
|
15
15
|
const CACHE_DIR = join(tmpdir(), "supaslidev-cli");
|
|
16
16
|
const CACHE_FILE = join(CACHE_DIR, "version-cache.json");
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { parse, parseDocument, stringify } from "yaml";
|
|
|
11
11
|
import { IndentationText, Node, Project, SyntaxKind } from "ts-morph";
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/version.ts
|
|
14
|
-
const CLI_VERSION = "0.4.
|
|
14
|
+
const CLI_VERSION = "0.4.1";
|
|
15
15
|
const PACKAGE_NAME = "@supaslidev/cli";
|
|
16
16
|
const CACHE_DIR = join(tmpdir(), "supaslidev-cli");
|
|
17
17
|
const CACHE_FILE = join(CACHE_DIR, "version-cache.json");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-supaslidev",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "CLI tool for scaffolding Supaslidev presentations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"slidev",
|
|
@@ -39,18 +39,18 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@clack/prompts": "^1.2.0",
|
|
41
41
|
"commander": "^14.0.3",
|
|
42
|
-
"ejs": "^5.0.
|
|
42
|
+
"ejs": "^5.0.2",
|
|
43
43
|
"picocolors": "^1.1.1",
|
|
44
44
|
"ts-morph": "^27.0.2",
|
|
45
45
|
"yaml": "^2.8.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/ejs": "^3.1.5",
|
|
49
|
-
"@types/node": "^24.12.
|
|
50
|
-
"tsdown": "^0.21.
|
|
49
|
+
"@types/node": "^24.12.2",
|
|
50
|
+
"tsdown": "^0.21.9",
|
|
51
51
|
"tsx": "^4.21.0",
|
|
52
|
-
"typescript": "^6.0.
|
|
53
|
-
"vitest": "^4.1.
|
|
52
|
+
"typescript": "^6.0.3",
|
|
53
|
+
"vitest": "^4.1.5"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|