slidev-workspace 0.4.1 → 0.4.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.
package/dist/cli.js CHANGED
@@ -162,7 +162,9 @@ async function startAllSlidesDevServer(workspaceCwd) {
162
162
  "run",
163
163
  "dev",
164
164
  "--port",
165
- currentPort.toString()
165
+ currentPort.toString(),
166
+ "--open",
167
+ "false"
166
168
  ], {
167
169
  cwd: slideDir,
168
170
  stdio: [
@@ -153,7 +153,9 @@ async function startAllSlidesDevServer(workspaceCwd) {
153
153
  "run",
154
154
  "dev",
155
155
  "--port",
156
- currentPort.toString()
156
+ currentPort.toString(),
157
+ "--open",
158
+ "false"
157
159
  ], {
158
160
  cwd: slideDir,
159
161
  stdio: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slidev-workspace",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "A workspace tool for managing multiple Slidev presentations with API-based content management",
5
5
  "type": "module",
6
6
  "license": "MIT",