mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-03 03:12:35 +02:00
chore(v2): upgrade deps (#2508)
This commit is contained in:
parent
4956d1ec81
commit
9cff1bb9e4
12 changed files with 1119 additions and 665 deletions
10
package.json
10
package.json
|
@ -25,10 +25,10 @@
|
|||
"tsc": "lerna run tsc --no-private"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.4",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
|
||||
"@babel/preset-typescript": "^7.7.4",
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
||||
"@babel/preset-typescript": "^7.9.0",
|
||||
"@types/express": "^4.17.2",
|
||||
"@types/fs-extra": "^8.0.1",
|
||||
"@types/inquirer": "^6.5.0",
|
||||
|
@ -63,7 +63,7 @@
|
|||
"prettier": "^1.19.1",
|
||||
"react": "^16.8.4",
|
||||
"react-dom": "^16.8.4",
|
||||
"stylelint": "^13.2.0",
|
||||
"stylelint": "^13.2.1",
|
||||
"typescript": "^3.7.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
|
|
@ -26,16 +26,16 @@
|
|||
"docusaurus-rename-version": "./lib/rename-version.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.7.4",
|
||||
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
|
||||
"@babel/polyfill": "^7.7.0",
|
||||
"@babel/preset-env": "^7.7.4",
|
||||
"@babel/preset-react": "^7.7.4",
|
||||
"@babel/register": "^7.7.4",
|
||||
"@babel/traverse": "^7.7.4",
|
||||
"@babel/types": "^7.7.4",
|
||||
"autoprefixer": "^9.7.2",
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
|
||||
"@babel/polyfill": "^7.8.7",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"@babel/register": "^7.9.0",
|
||||
"@babel/traverse": "^7.9.0",
|
||||
"@babel/types": "^7.9.0",
|
||||
"autoprefixer": "^9.7.5",
|
||||
"babylon": "^6.18.0",
|
||||
"chalk": "^3.0.0",
|
||||
"classnames": "^2.2.6",
|
||||
|
@ -77,6 +77,6 @@
|
|||
"filepath": "^1.1.0",
|
||||
"front-matter": "^3.0.2",
|
||||
"glob-promise": "^3.3.0",
|
||||
"rimraf": "^3.0.0"
|
||||
"rimraf": "^3.0.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"chalk": "^3.0.0",
|
||||
"commander": "^4.0.1",
|
||||
"fs-extra": "^8.1.0",
|
||||
"inquirer": "^7.0.0",
|
||||
"inquirer": "^7.1.0",
|
||||
"lodash.kebabcase": "^4.1.1",
|
||||
"semver": "^6.3.0",
|
||||
"shelljs": "^0.8.3"
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"eslint-plugin-react": "^7.16.0",
|
||||
"eslint-plugin-react-hooks": "^2.3.0",
|
||||
"prettier": "^1.19.1",
|
||||
"stylelint": "^13.2.0"
|
||||
"stylelint": "^13.2.1"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
|
|
|
@ -8,19 +8,19 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.7.4",
|
||||
"@babel/traverse": "^7.7.4",
|
||||
"@babel/parser": "^7.9.4",
|
||||
"@babel/traverse": "^7.9.0",
|
||||
"@mdx-js/mdx": "^1.5.8",
|
||||
"@mdx-js/react": "^1.5.8",
|
||||
"escape-html": "^1.0.3",
|
||||
"fs-extra": "^8.1.0",
|
||||
"github-slugger": "^1.2.1",
|
||||
"github-slugger": "^1.3.0",
|
||||
"gray-matter": "^4.0.2",
|
||||
"loader-utils": "^1.2.3",
|
||||
"mdast-util-to-string": "^1.0.7",
|
||||
"remark-emoji": "^2.0.2",
|
||||
"mdast-util-to-string": "^1.1.0",
|
||||
"remark-emoji": "^2.1.0",
|
||||
"stringify-object": "^3.3.0",
|
||||
"unist-util-visit": "^2.0.1"
|
||||
"unist-util-visit": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"remark": "^11.0.2",
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"dependencies": {
|
||||
"@docusaurus/mdx-loader": "^2.0.0-alpha.49",
|
||||
"@docusaurus/utils": "^2.0.0-alpha.49",
|
||||
"feed": "^4.0.0",
|
||||
"feed": "^4.1.0",
|
||||
"fs-extra": "^8.1.0",
|
||||
"globby": "^10.0.1",
|
||||
"loader-utils": "^1.2.3",
|
||||
|
|
|
@ -57,7 +57,7 @@ exports[`blogFeed rss can show feed without posts 1`] = `
|
|||
<link>https://docusaurus.io/blog</link>
|
||||
<description>Hello Blog</description>
|
||||
<lastBuildDate>Sun, 25 Oct 2015 23:29:00 GMT</lastBuildDate>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<copyright>Copyright</copyright>
|
||||
</channel>
|
||||
|
@ -72,27 +72,27 @@ exports[`blogFeed rss shows feed item for each post 1`] = `
|
|||
<link>https://docusaurus.io/blog</link>
|
||||
<description>Hello Blog</description>
|
||||
<lastBuildDate>Thu, 27 Feb 2020 00:00:00 GMT</lastBuildDate>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
|
||||
<generator>https://github.com/jpmonette/feed</generator>
|
||||
<copyright>Copyright</copyright>
|
||||
<item>
|
||||
<title><![CDATA[draft]]></title>
|
||||
<link>https://docusaurus.io/blog/2020/02/27/draft</link>
|
||||
<guid>https://docusaurus.io/blog/2020/02/27/draft</guid>
|
||||
<guid>draft</guid>
|
||||
<pubDate>Thu, 27 Feb 2020 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[this post should not be published yet]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[date-matter]]></title>
|
||||
<link>https://docusaurus.io/blog/2019/01/01/date-matter</link>
|
||||
<guid>https://docusaurus.io/blog/2019/01/01/date-matter</guid>
|
||||
<guid>date-matter</guid>
|
||||
<pubDate>Tue, 01 Jan 2019 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[date inside front matter]]></description>
|
||||
</item>
|
||||
<item>
|
||||
<title><![CDATA[Happy 1st Birthday Slash!]]></title>
|
||||
<link>https://docusaurus.io/blog/2018/12/14/Happy-First-Birthday-Slash</link>
|
||||
<guid>https://docusaurus.io/blog/2018/12/14/Happy-First-Birthday-Slash</guid>
|
||||
<guid>Happy 1st Birthday Slash!</guid>
|
||||
<pubDate>Fri, 14 Dec 2018 00:00:00 GMT</pubDate>
|
||||
<description><![CDATA[pattern name]]></description>
|
||||
</item>
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
"@mdx-js/mdx": "^1.5.8",
|
||||
"@mdx-js/react": "^1.5.8",
|
||||
"classnames": "^2.2.6",
|
||||
"clipboard": "^2.0.4",
|
||||
"clipboard": "^2.0.6",
|
||||
"infima": "0.2.0-alpha.6",
|
||||
"parse-numeric-range": "^0.0.2",
|
||||
"prism-react-renderer": "^1.0.2",
|
||||
"prismjs": "^1.17.1",
|
||||
"prismjs": "^1.19.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"react-toggle": "^4.1.1"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"dependencies": {
|
||||
"@philpl/buble": "^0.19.7",
|
||||
"classnames": "^2.2.6",
|
||||
"clipboard": "^2.0.4",
|
||||
"clipboard": "^2.0.6",
|
||||
"parse-numeric-range": "^0.0.2",
|
||||
"prism-react-renderer": "^1.0.2",
|
||||
"react-live": "^2.2.1"
|
||||
|
|
|
@ -32,16 +32,16 @@
|
|||
"@docusaurus/types": "^2.0.0-alpha.49"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.7.4",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
||||
"@babel/plugin-transform-runtime": "^7.7.4",
|
||||
"@babel/preset-env": "^7.7.4",
|
||||
"@babel/preset-react": "^7.7.4",
|
||||
"@babel/preset-typescript": "^7.7.4",
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-transform-runtime": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"@babel/preset-typescript": "^7.9.0",
|
||||
"@babel/runtime": "^7.9.2",
|
||||
"@docusaurus/utils": "^2.0.0-alpha.49",
|
||||
"@endiliey/static-site-generator-webpack-plugin": "^4.0.0",
|
||||
"babel-loader": "^8.0.6",
|
||||
"babel-loader": "^8.1.0",
|
||||
"babel-plugin-dynamic-import-node": "^2.3.0",
|
||||
"cache-loader": "^4.1.0",
|
||||
"chalk": "^3.0.0",
|
||||
|
@ -50,15 +50,15 @@
|
|||
"commander": "^4.0.1",
|
||||
"copy-webpack-plugin": "^5.0.5",
|
||||
"core-js": "^2.6.5",
|
||||
"css-loader": "^3.2.0",
|
||||
"css-loader": "^3.4.2",
|
||||
"del": "^5.1.0",
|
||||
"ejs": "^3.0.1",
|
||||
"ejs": "^3.0.2",
|
||||
"express": "^4.17.1",
|
||||
"fs-extra": "^8.1.0",
|
||||
"globby": "^10.0.1",
|
||||
"html-minifier-terser": "^5.0.2",
|
||||
"html-minifier-terser": "^5.0.5",
|
||||
"html-tags": "^3.1.0",
|
||||
"html-webpack-plugin": "^4.0.0-beta.11",
|
||||
"html-webpack-plugin": "^4.0.4",
|
||||
"import-fresh": "^3.2.1",
|
||||
"lodash": "^4.17.15",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
|
@ -78,11 +78,11 @@
|
|||
"semver": "^6.3.0",
|
||||
"shelljs": "^0.8.3",
|
||||
"std-env": "^2.2.1",
|
||||
"terser-webpack-plugin": "^2.2.1",
|
||||
"terser-webpack-plugin": "^2.3.5",
|
||||
"wait-file": "^1.0.5",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-bundle-analyzer": "^3.6.0",
|
||||
"webpack-dev-server": "^3.9.0",
|
||||
"webpack-bundle-analyzer": "^3.6.1",
|
||||
"webpack-dev-server": "^3.10.3",
|
||||
"webpack-merge": "^4.2.2",
|
||||
"webpackbar": "^4.0.0"
|
||||
},
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
"main": "index.js",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"stylelint": "^13.2.0"
|
||||
"stylelint": "^13.2.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue