markstream-vue 0.0.5-beta.6 → 0.0.6-beta.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/README.md +8 -0
- package/README.zh-CN.md +8 -0
- package/dist/tailwind.ts +0 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -425,6 +425,14 @@ https://github.com/Simon-He95/markstream-vue/issues
|
|
|
425
425
|
|
|
426
426
|
## Thanks
|
|
427
427
|
|
|
428
|
+
### Contributors
|
|
429
|
+
|
|
430
|
+
Thanks to all the people who have contributed to this project!
|
|
431
|
+
|
|
432
|
+
[](https://github.com/Simon-He95/markstream-vue/graphs/contributors)
|
|
433
|
+
|
|
434
|
+
### Dependencies
|
|
435
|
+
|
|
428
436
|
This project uses and benefits from:
|
|
429
437
|
- [stream-monaco](https://github.com/Simon-He95/stream-monaco)
|
|
430
438
|
- [stream-markdown](https://github.com/Simon-He95/stream-markdown)
|
package/README.zh-CN.md
CHANGED
|
@@ -426,6 +426,14 @@ https://github.com/Simon-He95/markstream-vue/issues
|
|
|
426
426
|
|
|
427
427
|
## 鸣谢
|
|
428
428
|
|
|
429
|
+
### 贡献者
|
|
430
|
+
|
|
431
|
+
感谢所有为项目做出贡献的开发者!
|
|
432
|
+
|
|
433
|
+
[](https://github.com/Simon-He95/markstream-vue/graphs/contributors)
|
|
434
|
+
|
|
435
|
+
### 依赖项目
|
|
436
|
+
|
|
429
437
|
本项目使用并受益于:
|
|
430
438
|
|
|
431
439
|
- [stream-monaco](https://github.com/Simon-He95/stream-monaco)
|
package/dist/tailwind.ts
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markstream-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6-beta.0",
|
|
5
5
|
"description": "Vue 3 Markdown renderer optimized for large docs: progressive Mermaid, streaming diff code blocks, and fast real-time preview.",
|
|
6
6
|
"author": "Simon He",
|
|
7
7
|
"license": "MIT",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
102
|
"@floating-ui/dom": "^1.7.4",
|
|
103
|
-
"stream-markdown-parser": "0.0.58-beta.
|
|
103
|
+
"stream-markdown-parser": "0.0.58-beta.4"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@antfu/eslint-config": "^5.4.1",
|
|
@@ -160,12 +160,15 @@
|
|
|
160
160
|
"play:react:build": "pnpm run -C playground-react build",
|
|
161
161
|
"play:react:preview": "pnpm run -C playground-react preview",
|
|
162
162
|
"preview": "pnpm run -C playground preview",
|
|
163
|
+
"build:parser": "pnpm run -C packages/markdown-parser build",
|
|
163
164
|
"build": "vite build --mode npm && vite build --config vite.config.tailwind.ts --mode npm && node scripts/copy-tailwind-css.mjs && pnpm run build:dts",
|
|
164
165
|
"docs:dev": "vitepress dev docs",
|
|
165
166
|
"docs:sync-zh": "node scripts/sync-zh-docs.mjs",
|
|
166
167
|
"docs:check-zh": "node scripts/check-zh-parity.mjs",
|
|
167
168
|
"docs:build": "vitepress build docs",
|
|
169
|
+
"docs:build:ci": "pnpm run build && vitepress build docs",
|
|
168
170
|
"docs:build:netlify": "VITEPRESS_BASE=/ pnpm docs:build",
|
|
171
|
+
"docs:build:gh": "VITEPRESS_BASE=/markstream-vue/ pnpm docs:build",
|
|
169
172
|
"docs:serve": "vitepress serve docs",
|
|
170
173
|
"docs:deploy": "VITEPRESS_BASE=/markstream-vue/ pnpm docs:build && pnpm docs:serve",
|
|
171
174
|
"docs:deploy:netlify": "pnpm docs:build && echo 'Docs built to docs/.vitepress/dist'",
|