Skip to content

Commit

Permalink
Merge pull request #36 from BlizzBolts/0.11.0
Browse files Browse the repository at this point in the history
0.11.0
  • Loading branch information
null51_ committed Dec 7, 2022
2 parents 2301ddc + e203e91 commit 439faa2
Show file tree
Hide file tree
Showing 32 changed files with 5,658 additions and 3,923 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
build
*.log
docs-dist
package-lock.json
docs-dist
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.11.0] - 2022-12-07

### Changed

- lock some deps from dependencies list
- change mdast related lib to remark ecosystem
- enforce some styles in case third party style conflicts
- prefix all css variables
- optimizeDeps @mdx-js/react
- sidebar highlight now support zhCN

### Fixed

- Fix chokidar still watching in build command

## [0.10.2] - 2022-08-02

### Changed
Expand Down
Empty file modified bin/docit.js
100644 → 100755
Empty file.
4 changes: 4 additions & 0 deletions docs/.docit/docit.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ const config = defineConfig({
title: "MDX",
path: "/document/MDX",
},
{
title: "中文测试",
path: "/configure/中文标题测试",
},
{
title: "Live Block",
path: "/document/live-block",
Expand Down
1 change: 1 addition & 0 deletions docs/configure/中文标题测试.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
123123
42 changes: 26 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blizzbolts/docit",
"version": "0.10.3",
"version": "0.11.0",
"license": "MIT",
"bin": {
"docit": "bin/docit.js"
Expand Down Expand Up @@ -40,6 +40,7 @@
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/mdast": "^3.0.10",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
Expand All @@ -48,11 +49,15 @@
"@types/resolve": "^1.20.1",
"@types/styled-components": "^5.1.24",
"gh-pages": "^3.2.3",
"rehype-stringify": "^9.0.3",
"remark-rehype": "^10.1.0",
"vfile": "^5.3.5",
"vitest": "^0.7.6"
},
"dependencies": {
"@mdx-js/react": "2.1.2",
"@mdx-js/rollup": "2.1.2",
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "2.1.5",
"@mdx-js/rollup": "2.1.5",
"@rollup/plugin-node-resolve": "^13.1.3",
"@vitejs/plugin-react": "^1.1.4",
"bundle-require": "^3.0.4",
Expand All @@ -63,31 +68,36 @@
"gray-matter": "^4.0.3",
"highlight.js": "^11.5.0",
"lodash-es": "^4.17.21",
"mdast-util-gfm-table": "^1.0.4",
"mdast-util-mdx": "2.0.0",
"mdast-util-toc": "6.1.0",
"mdast": "^3.0.0",
"mdast-util-toc": "^6.1.0",
"minimist": "^1.2.5",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"qrcode": "^1.5.0",
"qrcode": "1.5.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"rehype-highlight": "5.0.2",
"rehype-slug": "5.0.1",
"remark-emoji": "3.0.2",
"remark-frontmatter": "4.0.1",
"remark-gfm": "3.0.1",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"remark": "^14.0.2",
"remark-emoji": "^3.0.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.1.5",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"resolve": "^1.19.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"sass": "^1.49.9",
"simpler-state": "^1.1.0",
"styled-components": "^5.3.3",
"typescript": "^4.6.2",
"unist-util-select": "4.0.1",
"unist-util-visit": "4.0.0",
"unified": "^10.1.2",
"unist-util-select": "^4.0.1",
"unist-util-visit": "^4.0.0",
"vite": "2.9.13",
"vite-plugin-virtual": "^0.1.1"
},
Expand Down

0 comments on commit 439faa2

Please sign in to comment.