@vscode/markdown-editor 0.0.2-52 → 0.0.2-54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/markdown-editor",
3
- "version": "0.0.2-52",
3
+ "version": "0.0.2-54",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -72,12 +72,15 @@
72
72
  "scripts": {
73
73
  "build": "pnpm run build:dependencies && vite build",
74
74
  "build:dependencies": "pnpm --filter @vscode/hubrpc build && pnpm --filter @vscode/web-editors build",
75
- "build:explorer": "pnpm run build:dependencies && pnpm --filter @vscode/component-explorer-vite-plugin... build && pnpm --filter @vscode/sample-web-editor build && vite build --config vite.fixture.config.ts --outDir dist-explorer --emptyOutDir",
75
+ "build:fixture-dependencies": "pnpm run build:dependencies && pnpm --filter @vscode/component-explorer-vite-plugin... build && pnpm --filter @vscode/sample-web-editor build",
76
+ "build:fixtures": "vite build --config vite.fixture.config.ts --outDir dist-explorer --emptyOutDir",
77
+ "build:explorer": "pnpm run build:fixture-dependencies && pnpm run build:fixtures",
78
+ "serve:e2e-fixtures": "vite preview --config vite.fixture.config.ts --outDir dist-explorer --port 5179 --strictPort",
76
79
  "dev": "vite build --watch",
77
80
  "pack": "pnpm run build && pnpm pack",
78
81
  "test": "vitest --run",
79
82
  "test:watch": "vitest",
80
- "test:e2e": "playwright test"
83
+ "test:e2e": "pnpm run build:fixture-dependencies && pnpm run build:fixtures && playwright test"
81
84
  },
82
85
  "dependencies": {
83
86
  "@vscode/codicons": "^0.0.45",
@@ -111,5 +114,6 @@
111
114
  "vite-plugin-dts": "^4.5.4",
112
115
  "vitest": "^4.1.0",
113
116
  "zod": "^4.3.6"
114
- }
117
+ },
118
+ "gitHead": "461498c89b2bcb5515dc8b07d80b656c7a5f9a60"
115
119
  }