@slidev/cli 0.29.0 → 0.30.0

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.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createServer
3
- } from "./chunk-G22DGVU7.mjs";
3
+ } from "./chunk-46RYGQQC.mjs";
4
4
  import {
5
5
  fs_exports,
6
6
  getCLIRoot,
@@ -9,14 +9,14 @@ import {
9
9
  getUserRoot,
10
10
  isPath,
11
11
  resolveOptions
12
- } from "./chunk-WMQA2JLO.mjs";
12
+ } from "./chunk-KZHGLGA5.mjs";
13
13
  import {
14
14
  ViteSlidevPlugin,
15
15
  createWindiCSSPlugin
16
- } from "./chunk-UEIFQWPY.mjs";
16
+ } from "./chunk-4AVLCCHB.mjs";
17
17
  import {
18
18
  init_esm_shims
19
- } from "./chunk-VYBQLH2X.mjs";
19
+ } from "./chunk-XMETW2MS.mjs";
20
20
 
21
21
  // node/index.ts
22
22
  init_esm_shims();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slidev/cli",
3
- "version": "0.29.0",
3
+ "version": "0.30.0",
4
4
  "description": "Presentation slides for developers",
5
5
  "homepage": "https://sli.dev",
6
6
  "bugs": "https://github.com/slidevjs/slidev/issues",
@@ -39,14 +39,14 @@
39
39
  }
40
40
  },
41
41
  "dependencies": {
42
- "@antfu/utils": "^0.5.0",
43
- "@iconify-json/carbon": "^1.1.2",
42
+ "@antfu/utils": "^0.5.1",
43
+ "@iconify-json/carbon": "^1.1.3",
44
44
  "@iconify-json/ph": "^1.1.1",
45
- "@slidev/client": "0.29.0",
46
- "@slidev/parser": "0.29.0",
47
- "@slidev/types": "0.29.0",
48
- "@vitejs/plugin-vue": "^2.2.4",
49
- "@vue/compiler-sfc": "^3.2.31",
45
+ "@slidev/client": "0.30.0",
46
+ "@slidev/parser": "0.30.0",
47
+ "@slidev/types": "0.30.0",
48
+ "@vitejs/plugin-vue": "^2.3.1",
49
+ "@vue/compiler-sfc": "^3.2.32",
50
50
  "cli-progress": "^3.10.0",
51
51
  "codemirror": "^5.65.2",
52
52
  "connect": "^3.7.0",
@@ -64,9 +64,8 @@
64
64
  "markdown-it-footnote": "^3.0.3",
65
65
  "markdown-it-link-attributes": "^4.0.0",
66
66
  "monaco-editor": "^0.33.0",
67
- "nanoid": "^3.3.1",
67
+ "nanoid": "^3.3.2",
68
68
  "open": "^8.4.0",
69
- "pdf-lib": "^1.17.1",
70
69
  "plantuml-encoder": "^1.4.0",
71
70
  "prismjs": "^1.27.0",
72
71
  "prompts": "^2.4.2",
@@ -74,21 +73,21 @@
74
73
  "resolve-from": "^5.0.0",
75
74
  "resolve-global": "^1.0.0",
76
75
  "shiki": "^0.10.1",
77
- "unplugin-icons": "^0.14.0",
78
- "unplugin-vue-components": "^0.18.3",
79
- "vite": "^2.8.6",
80
- "vite-plugin-md": "^0.12.0",
76
+ "unplugin-icons": "^0.14.1",
77
+ "unplugin-vue-components": "^0.19.2",
78
+ "vite": "^2.9.1",
79
+ "vite-plugin-md": "^0.12.4",
81
80
  "vite-plugin-remote-assets": "^0.2.2",
82
81
  "vite-plugin-vue-server-ref": "^0.2.4",
83
- "vite-plugin-windicss": "^1.8.3",
84
- "vue": "^3.2.31",
82
+ "vite-plugin-windicss": "^1.8.4",
83
+ "vue": "^3.2.32",
85
84
  "windicss": "^3.5.1",
86
- "yargs": "^17.4.0"
85
+ "yargs": "^17.4.1"
87
86
  },
88
87
  "devDependencies": {
89
88
  "@types/plantuml-encoder": "^1.4.0",
90
89
  "fast-deep-equal": "^3.1.3",
91
- "semver": "^7.3.5",
90
+ "semver": "^7.3.7",
92
91
  "sirv": "^2.0.2"
93
92
  },
94
93
  "engines": {
package/template.md CHANGED
@@ -115,7 +115,7 @@ interface User {
115
115
 
116
116
  function updateUser(id: number, update: User) {
117
117
  const user = getUser(id)
118
- const newUser = {...user, ...update}
118
+ const newUser = { ...user, ...update }
119
119
  saveUser(id, newUser)
120
120
  }
121
121
  ```