mirror of
https://github.com/zhigang1992/docz.git
synced 2026-04-24 05:06:09 +08:00
fix(docz-core): copy templates files for dist (#88)
* chore: update dependencies * fix(docz-core): copy templates files for dist
This commit is contained in:
@@ -9,14 +9,14 @@
|
||||
"dependencies": {
|
||||
"docz": "^0.3.2",
|
||||
"docz-core": "^0.3.2",
|
||||
"emotion": "^9.2.3",
|
||||
"emotion": "^9.2.4",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^16.4.1",
|
||||
"react-dom": "^16.4.1",
|
||||
"react-emotion": "^9.2.3"
|
||||
"react-emotion": "^9.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-emotion": "^9.2.0",
|
||||
"babel-plugin-emotion": "^9.2.4",
|
||||
"docz-plugin-babel6": "^0.3.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,13 +9,13 @@
|
||||
"dependencies": {
|
||||
"docz": "^0.3.2",
|
||||
"docz-core": "^0.3.2",
|
||||
"emotion": "^9.2.3",
|
||||
"emotion": "^9.2.4",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^16.4.1",
|
||||
"react-dom": "^16.4.1",
|
||||
"react-emotion": "^9.2.3"
|
||||
"react-emotion": "^9.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-emotion": "^9.2.0"
|
||||
"babel-plugin-emotion": "^9.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,15 +9,15 @@
|
||||
"dependencies": {
|
||||
"@babel/preset-flow": "^7.0.0-beta.51",
|
||||
"docz": "^0.3.2",
|
||||
"emotion": "^9.2.3",
|
||||
"emotion": "^9.2.4",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^16.4.1",
|
||||
"react-dom": "^16.4.1",
|
||||
"react-emotion": "^9.2.3"
|
||||
"react-emotion": "^9.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-emotion": "^9.2.0",
|
||||
"flow-bin": "^0.74.0",
|
||||
"babel-plugin-emotion": "^9.2.4",
|
||||
"flow-bin": "^0.75.0",
|
||||
"flow-typed": "^2.4.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,12 +8,12 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"docz": "^0.3.2",
|
||||
"emotion": "^9.2.3",
|
||||
"emotion": "^9.2.4",
|
||||
"react": "^16.4.1",
|
||||
"react-dom": "^16.4.1",
|
||||
"react-emotion": "^9.2.3"
|
||||
"react-emotion": "^9.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-emotion": "^9.2.0"
|
||||
"babel-plugin-emotion": "^9.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
10
package.json
10
package.json
@@ -10,9 +10,9 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/pedronauck/docz/issues"
|
||||
},
|
||||
"repository":{
|
||||
"type" : "git",
|
||||
"url" : "https://github.com/pedronauck/docz.git"
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pedronauck/docz.git"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "lerna clean",
|
||||
@@ -33,7 +33,7 @@
|
||||
"@commitlint/cli": "^7.0.0",
|
||||
"@commitlint/config-conventional": "^7.0.1",
|
||||
"@commitlint/config-lerna-scopes": "^7.0.0",
|
||||
"all-contributors-cli": "^5.2.0",
|
||||
"all-contributors-cli": "^5.2.1",
|
||||
"commitizen": "^2.10.1",
|
||||
"del": "^3.0.0",
|
||||
"husky": "^1.0.0-rc.9",
|
||||
@@ -41,7 +41,7 @@
|
||||
"libundler": "^1.7.1",
|
||||
"lint-staged": "^7.2.0",
|
||||
"npm-run-all": "^4.1.3",
|
||||
"prettier": "^1.13.5",
|
||||
"prettier": "^1.13.6",
|
||||
"trash-cli": "^1.4.0",
|
||||
"tslint": "^5.10.0",
|
||||
"tslint-config-prettier": "^1.13.0",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
const copy = require('rollup-plugin-cpy')
|
||||
const pkg = require('./package.json')
|
||||
const fs = require('fs-extra')
|
||||
const cpy = require('cpy')
|
||||
|
||||
const copy = (files, dest) => ({
|
||||
name: 'copy',
|
||||
onwrite: () => {
|
||||
fs.ensureDirSync(dest)
|
||||
cpy(files, dest)
|
||||
},
|
||||
})
|
||||
|
||||
module.exports = {
|
||||
external: Object.keys(pkg.dependencies).concat([
|
||||
@@ -8,12 +17,5 @@ module.exports = {
|
||||
'react-dev-utils/printBuildError',
|
||||
'react-dom/server',
|
||||
]),
|
||||
plugins: [
|
||||
copy([
|
||||
{
|
||||
files: 'templates/*.{js,html,json}',
|
||||
dest: 'dist/templates',
|
||||
},
|
||||
]),
|
||||
],
|
||||
plugins: [copy('templates/*.{js,html,json}', 'dist/templates')],
|
||||
}
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
"@babel/core": "7.0.0-beta.51",
|
||||
"@babel/preset-typescript": "^7.0.0-beta.51",
|
||||
"@babel/runtime": "^7.0.0-beta.51",
|
||||
"@mdx-js/loader": "^0.11.0",
|
||||
"@mdx-js/mdx": "^0.10.1",
|
||||
"@mdx-js/loader": "^0.11.1",
|
||||
"@mdx-js/mdx": "^0.11.1",
|
||||
"@mdx-js/mdxast": "^0.10.0",
|
||||
"@sindresorhus/slugify": "^0.3.0",
|
||||
"art-template": "^4.12.2",
|
||||
@@ -35,6 +35,7 @@
|
||||
"chalk": "^2.4.1",
|
||||
"chokidar": "^2.0.4",
|
||||
"connect-history-api-fallback": "^1.5.0",
|
||||
"cpy": "^7.0.1",
|
||||
"deepmerge": "^2.1.1",
|
||||
"detect-port": "^1.2.3",
|
||||
"docz-theme-default": "^0.3.2",
|
||||
@@ -52,7 +53,7 @@
|
||||
"koa-static": "^5.0.0",
|
||||
"load-cfg": "^0.2.8",
|
||||
"lodash.get": "^4.4.2",
|
||||
"prettier": "^1.13.5",
|
||||
"prettier": "^1.13.6",
|
||||
"react-dev-utils": "^5.0.1",
|
||||
"react-docgen-typescript-loader": "^2.1.1",
|
||||
"react-hot-loader": "4.3.3",
|
||||
@@ -65,7 +66,7 @@
|
||||
"resolve": "^1.8.1",
|
||||
"signale": "^1.2.1",
|
||||
"to-vfile": "^5.0.0",
|
||||
"uglifyjs-webpack-plugin": "^1.2.6",
|
||||
"uglifyjs-webpack-plugin": "^1.2.7",
|
||||
"ulid": "^2.3.0",
|
||||
"unified": "^7.0.0",
|
||||
"unist-util-find": "^1.0.1",
|
||||
@@ -73,13 +74,13 @@
|
||||
"unist-util-remove": "^1.0.1",
|
||||
"unist-util-visit": "^1.3.1",
|
||||
"url-loader": "^1.0.1",
|
||||
"webpack": "^4.12.0",
|
||||
"webpack": "^4.12.1",
|
||||
"webpack-chain": "^4.8.0",
|
||||
"webpack-hot-client": "^4.0.3",
|
||||
"webpack-manifest-plugin": "^2.0.3",
|
||||
"webpack-serve": "^1.0.4",
|
||||
"webpackbar": "^2.6.1",
|
||||
"ws": "^5.2.0",
|
||||
"ws": "^5.2.1",
|
||||
"yargs": "^11.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -92,14 +93,13 @@
|
||||
"@types/fs-extra": "^5.0.3",
|
||||
"@types/html-webpack-plugin": "^2.30.3",
|
||||
"@types/lodash.get": "^4.4.3",
|
||||
"@types/node": "10.3.4",
|
||||
"@types/node": "10.3.6",
|
||||
"@types/prettier": "^1.13.1",
|
||||
"@types/resolve": "^0.0.8",
|
||||
"@types/webpack": "^4.4.2",
|
||||
"@types/webpack": "^4.4.3",
|
||||
"@types/webpack-chain": "^4.8.0",
|
||||
"@types/ws": "^5.1.2",
|
||||
"@types/yargs": "^11.0.0",
|
||||
"rollup-plugin-cpy": "^1.0.0",
|
||||
"tslint": "^5.10.0",
|
||||
"tslint-config-prettier": "^1.13.0",
|
||||
"typescript": "^2.9.2"
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
"dependencies": {
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^7.1.4",
|
||||
"babel-preset-react-app": "^3.1.1",
|
||||
"babel-preset-react-app": "^3.1.2",
|
||||
"docz-core": "^0.3.2",
|
||||
"happypack": "^5.0.0",
|
||||
"ts-loader": "^4.4.1"
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
"style-loader": "^0.21.0",
|
||||
"stylus": "^0.54.5",
|
||||
"stylus-loader": "^3.0.2",
|
||||
"webpack": "^4.12.0",
|
||||
"webpack": "^4.12.1",
|
||||
"webpack-chain": "^4.8.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"docz": "^0.3.2",
|
||||
"emotion": "^9.2.3",
|
||||
"emotion-theming": "^9.2.3",
|
||||
"emotion": "^9.2.4",
|
||||
"emotion-theming": "^9.2.4",
|
||||
"facepaint": "^1.2.1",
|
||||
"fast-deep-equal": "^2.0.1",
|
||||
"prismjs": "^1.15.0",
|
||||
@@ -31,7 +31,7 @@
|
||||
"react-adopt": "^0.6.0",
|
||||
"react-breakpoints": "^3.0.0",
|
||||
"react-dom": "^16.4.1",
|
||||
"react-emotion": "^9.2.3",
|
||||
"react-emotion": "^9.2.4",
|
||||
"react-feather": "^1.1.0",
|
||||
"react-lightweight-tooltip": "^1.0.0",
|
||||
"react-powerplug": "^0.1.6",
|
||||
@@ -44,7 +44,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/prismjs": "^1.9.0",
|
||||
"babel-plugin-emotion": "^9.2.0",
|
||||
"babel-plugin-emotion": "^9.2.4",
|
||||
"rollup-plugin-svg": "^1.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,9 +41,9 @@
|
||||
"react-dom": "^16.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bluebird": "^3.5.20",
|
||||
"@types/bluebird": "^3.5.21",
|
||||
"@types/deepmerge": "^2.1.0",
|
||||
"@types/react": "^16.4.1",
|
||||
"@types/react": "^16.4.2",
|
||||
"@types/react-dom": "^16.0.6",
|
||||
"@types/react-router-dom": "^4.2.7"
|
||||
}
|
||||
|
||||
@@ -22,11 +22,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"deepmerge": "^2.1.1",
|
||||
"esm": "^3.0.52",
|
||||
"esm": "^3.0.55",
|
||||
"find-up": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/find-up": "^2.1.1",
|
||||
"@types/node": "^10.3.4"
|
||||
"@types/node": "^10.3.6"
|
||||
}
|
||||
}
|
||||
|
||||
224
yarn.lock
224
yarn.lock
@@ -1038,7 +1038,18 @@
|
||||
version "0.5.3"
|
||||
resolved "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.5.3.tgz#6be6dd7a480fdbdfb6cbba7f4f6d9361744b8d6e"
|
||||
|
||||
"@emotion/hash@^0.6.2":
|
||||
"@emotion/babel-utils@^0.6.4":
|
||||
version "0.6.4"
|
||||
resolved "https://registry.npmjs.org/@emotion/babel-utils/-/babel-utils-0.6.4.tgz#2eac69eb31ae944fbe4a2a0e736a35db5f810866"
|
||||
dependencies:
|
||||
"@emotion/hash" "^0.6.3"
|
||||
"@emotion/memoize" "^0.6.2"
|
||||
"@emotion/serialize" "^0.8.2"
|
||||
convert-source-map "^1.5.1"
|
||||
find-root "^1.1.0"
|
||||
source-map "^0.7.2"
|
||||
|
||||
"@emotion/hash@^0.6.2", "@emotion/hash@^0.6.3":
|
||||
version "0.6.3"
|
||||
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.6.3.tgz#0e7a5604626fc6c6d4ac4061a2f5ac80d50262a4"
|
||||
|
||||
@@ -1052,14 +1063,31 @@
|
||||
version "0.6.2"
|
||||
resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.6.2.tgz#138e00b332d519b4e307bded6159e5ba48aba3ae"
|
||||
|
||||
"@emotion/serialize@^0.8.2":
|
||||
version "0.8.2"
|
||||
resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.8.2.tgz#d3b2caddfc93107d63c79fc6bbc11e555e3b762e"
|
||||
dependencies:
|
||||
"@emotion/hash" "^0.6.3"
|
||||
"@emotion/memoize" "^0.6.2"
|
||||
"@emotion/unitless" "^0.6.3"
|
||||
"@emotion/utils" "^0.7.1"
|
||||
|
||||
"@emotion/stylis@^0.6.10":
|
||||
version "0.6.10"
|
||||
resolved "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.6.10.tgz#7d321e639ebc8ba23ace5990c20e94dcebb8f3dd"
|
||||
|
||||
"@emotion/stylis@^0.6.5":
|
||||
version "0.6.8"
|
||||
resolved "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.6.8.tgz#6ad4e8d32b19b440efa4481bbbcb98a8c12765bb"
|
||||
|
||||
"@emotion/unitless@^0.6.2":
|
||||
"@emotion/unitless@^0.6.2", "@emotion/unitless@^0.6.3":
|
||||
version "0.6.3"
|
||||
resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.6.3.tgz#65682e68a82701c70eefb38d7f941a2c0bfa90de"
|
||||
|
||||
"@emotion/utils@^0.7.1":
|
||||
version "0.7.1"
|
||||
resolved "https://registry.npmjs.org/@emotion/utils/-/utils-0.7.1.tgz#e44e596d03c9f16ba3b127ad333a8a072bcb5a0a"
|
||||
|
||||
"@marionebl/sander@^0.6.0":
|
||||
version "0.6.1"
|
||||
resolved "https://registry.npmjs.org/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b"
|
||||
@@ -1068,15 +1096,15 @@
|
||||
mkdirp "^0.5.1"
|
||||
rimraf "^2.5.2"
|
||||
|
||||
"@mdx-js/loader@^0.11.0":
|
||||
version "0.11.0"
|
||||
resolved "https://registry.npmjs.org/@mdx-js/loader/-/loader-0.11.0.tgz#ad1197e2fcc67f31a91a4aa92c181b01b94b6605"
|
||||
"@mdx-js/loader@^0.11.1":
|
||||
version "0.11.1"
|
||||
resolved "https://registry.npmjs.org/@mdx-js/loader/-/loader-0.11.1.tgz#fe2a0238fddbc20a32df3d58f03250264d622fa4"
|
||||
dependencies:
|
||||
"@mdx-js/tag" "^0.11.0"
|
||||
|
||||
"@mdx-js/mdx@^0.10.1":
|
||||
version "0.10.1"
|
||||
resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-0.10.1.tgz#5c24679cf90fc80e16a8164de4fc9274a5657d78"
|
||||
"@mdx-js/mdx@^0.11.1":
|
||||
version "0.11.1"
|
||||
resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-0.11.1.tgz#2ca1f2a4287cbc603a7bcb77667d5f099b1da66c"
|
||||
dependencies:
|
||||
"@mdx-js/mdxast" "^0.10.0"
|
||||
mdast-util-to-hast "^3.0.0"
|
||||
@@ -1147,9 +1175,9 @@
|
||||
escape-string-regexp "^1.0.5"
|
||||
lodash.deburr "^4.1.0"
|
||||
|
||||
"@types/bluebird@^3.5.20":
|
||||
version "3.5.20"
|
||||
resolved "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.20.tgz#f6363172add6f4eabb8cada53ca9af2781e8d6a1"
|
||||
"@types/bluebird@^3.5.21":
|
||||
version "3.5.21"
|
||||
resolved "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.21.tgz#567615589cc913e84a28ecf9edb031732bdf2634"
|
||||
|
||||
"@types/body-parser@*":
|
||||
version "1.17.0"
|
||||
@@ -1280,9 +1308,9 @@
|
||||
version "10.0.0"
|
||||
resolved "https://registry.npmjs.org/@types/node/-/node-10.0.0.tgz#c40f8e07dce607d3ef25a626b93a6a7cdcf97881"
|
||||
|
||||
"@types/node@10.3.4", "@types/node@^10.3.4":
|
||||
version "10.3.4"
|
||||
resolved "https://registry.npmjs.org/@types/node/-/node-10.3.4.tgz#c74e8aec19e555df44609b8057311052a2c84d9e"
|
||||
"@types/node@10.3.6", "@types/node@^10.3.6":
|
||||
version "10.3.6"
|
||||
resolved "https://registry.npmjs.org/@types/node/-/node-10.3.6.tgz#ea8aab9439b59f40d19ec5f13b44642344872b11"
|
||||
|
||||
"@types/prettier@^1.13.1":
|
||||
version "1.13.1"
|
||||
@@ -1320,9 +1348,9 @@
|
||||
dependencies:
|
||||
csstype "^2.2.0"
|
||||
|
||||
"@types/react@^16.4.1":
|
||||
version "16.4.1"
|
||||
resolved "https://registry.npmjs.org/@types/react/-/react-16.4.1.tgz#c53bbfb4a78933db587da085ac60dbf5fcf73f8f"
|
||||
"@types/react@^16.4.2":
|
||||
version "16.4.2"
|
||||
resolved "https://registry.npmjs.org/@types/react/-/react-16.4.2.tgz#f1a9cf1ee85221530def2ac26aee20f910a9dac8"
|
||||
dependencies:
|
||||
csstype "^2.2.0"
|
||||
|
||||
@@ -1368,9 +1396,9 @@
|
||||
"@types/uglify-js" "*"
|
||||
source-map "^0.6.0"
|
||||
|
||||
"@types/webpack@^4.4.2":
|
||||
version "4.4.2"
|
||||
resolved "https://registry.npmjs.org/@types/webpack/-/webpack-4.4.2.tgz#44213e0dca0924544a2831ee42de2750124ef9b5"
|
||||
"@types/webpack@^4.4.3":
|
||||
version "4.4.3"
|
||||
resolved "https://registry.npmjs.org/@types/webpack/-/webpack-4.4.3.tgz#9424101def0d720747b3c059bf0f7eff2ea57b31"
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
"@types/tapable" "*"
|
||||
@@ -1646,9 +1674,9 @@ align-text@^0.1.1, align-text@^0.1.3:
|
||||
longest "^1.0.1"
|
||||
repeat-string "^1.5.2"
|
||||
|
||||
all-contributors-cli@^5.2.0:
|
||||
version "5.2.0"
|
||||
resolved "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-5.2.0.tgz#469508aee0906047944e3fad5c88f80c681a909a"
|
||||
all-contributors-cli@^5.2.1:
|
||||
version "5.2.1"
|
||||
resolved "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-5.2.1.tgz#24309dcdfd5570161b8254baba18dc94fcb1abde"
|
||||
dependencies:
|
||||
async "^2.0.0-rc.1"
|
||||
chalk "^2.3.0"
|
||||
@@ -2142,6 +2170,23 @@ babel-plugin-emotion@^9.2.0:
|
||||
source-map "^0.5.7"
|
||||
touch "^1.0.0"
|
||||
|
||||
babel-plugin-emotion@^9.2.4:
|
||||
version "9.2.4"
|
||||
resolved "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-9.2.4.tgz#a4e54a8097f6ba06cbbc7a9063927afafe9fe73a"
|
||||
dependencies:
|
||||
"@babel/helper-module-imports" "7.0.0-beta.40"
|
||||
"@emotion/babel-utils" "^0.6.4"
|
||||
"@emotion/hash" "^0.6.2"
|
||||
"@emotion/memoize" "^0.6.1"
|
||||
"@emotion/stylis" "^0.6.10"
|
||||
babel-plugin-macros "^2.0.0"
|
||||
babel-plugin-syntax-jsx "^6.18.0"
|
||||
convert-source-map "^1.5.0"
|
||||
find-root "^1.1.0"
|
||||
mkdirp "^0.5.1"
|
||||
source-map "^0.5.7"
|
||||
touch "^1.0.0"
|
||||
|
||||
babel-plugin-macros@2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.0.0.tgz#fd3aee135f7dec0b82898b7c8f1aed6fa75f9af9"
|
||||
@@ -2528,9 +2573,9 @@ babel-preset-flow@^6.23.0:
|
||||
dependencies:
|
||||
babel-plugin-transform-flow-strip-types "^6.22.0"
|
||||
|
||||
babel-preset-react-app@^3.1.1:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.1.1.tgz#d3f06a79742f0e89d7afcb72e282d9809c850920"
|
||||
babel-preset-react-app@^3.1.2:
|
||||
version "3.1.2"
|
||||
resolved "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz#49ba3681b917c4e5c73a5249d3ef4c48fae064e2"
|
||||
dependencies:
|
||||
babel-plugin-dynamic-import-node "1.1.0"
|
||||
babel-plugin-syntax-dynamic-import "6.18.0"
|
||||
@@ -3780,9 +3825,9 @@ cosmiconfig@^5.0.2:
|
||||
js-yaml "^3.9.0"
|
||||
parse-json "^4.0.0"
|
||||
|
||||
cp-file@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.npmjs.org/cp-file/-/cp-file-5.0.0.tgz#bc700fd30ca32d24d46c7fb02b992e435fc5a978"
|
||||
cp-file@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.npmjs.org/cp-file/-/cp-file-6.0.0.tgz#f38477ece100b403fcf780fd34d030486beb693e"
|
||||
dependencies:
|
||||
graceful-fs "^4.1.2"
|
||||
make-dir "^1.0.0"
|
||||
@@ -3790,13 +3835,13 @@ cp-file@^5.0.0:
|
||||
pify "^3.0.0"
|
||||
safe-buffer "^5.0.1"
|
||||
|
||||
cpy@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.npmjs.org/cpy/-/cpy-6.0.0.tgz#0b6888e037bb5a7b02a62249551316208a523253"
|
||||
cpy@^7.0.1:
|
||||
version "7.0.1"
|
||||
resolved "https://registry.npmjs.org/cpy/-/cpy-7.0.1.tgz#d817e4d81bd7f0f25ff812796c5f1392dc0fb485"
|
||||
dependencies:
|
||||
arrify "^1.0.1"
|
||||
cp-file "^5.0.0"
|
||||
globby "^6.0.0"
|
||||
cp-file "^6.0.0"
|
||||
globby "^8.0.1"
|
||||
nested-error-stacks "^2.0.0"
|
||||
|
||||
create-ecdh@^4.0.0:
|
||||
@@ -3830,6 +3875,18 @@ create-emotion@^9.2.1:
|
||||
stylis "^3.5.0"
|
||||
stylis-rule-sheet "^0.0.10"
|
||||
|
||||
create-emotion@^9.2.4:
|
||||
version "9.2.4"
|
||||
resolved "https://registry.npmjs.org/create-emotion/-/create-emotion-9.2.4.tgz#0a4379f6bf0708c54fe26bfcd6b6bd3592e8cf23"
|
||||
dependencies:
|
||||
"@emotion/hash" "^0.6.2"
|
||||
"@emotion/memoize" "^0.6.1"
|
||||
"@emotion/stylis" "^0.6.10"
|
||||
"@emotion/unitless" "^0.6.2"
|
||||
csstype "^2.5.2"
|
||||
stylis "^3.5.0"
|
||||
stylis-rule-sheet "^0.0.10"
|
||||
|
||||
create-error-class@^3.0.0, create-error-class@^3.0.1:
|
||||
version "3.0.2"
|
||||
resolved "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
|
||||
@@ -4437,9 +4494,9 @@ emojis-list@^2.0.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
|
||||
|
||||
emotion-theming@^9.2.3:
|
||||
version "9.2.3"
|
||||
resolved "https://registry.npmjs.org/emotion-theming/-/emotion-theming-9.2.3.tgz#a851f66615aeb8a7a02891e201da3b56fddf9a46"
|
||||
emotion-theming@^9.2.4:
|
||||
version "9.2.4"
|
||||
resolved "https://registry.npmjs.org/emotion-theming/-/emotion-theming-9.2.4.tgz#975837861ef2028704a014a60c64ebfabd432755"
|
||||
dependencies:
|
||||
hoist-non-react-statics "^2.3.1"
|
||||
|
||||
@@ -4450,12 +4507,12 @@ emotion@^9.1.1:
|
||||
babel-plugin-emotion "^9.2.0"
|
||||
create-emotion "^9.2.1"
|
||||
|
||||
emotion@^9.2.3:
|
||||
version "9.2.3"
|
||||
resolved "https://registry.npmjs.org/emotion/-/emotion-9.2.3.tgz#c93b9a222df92e6281036afa02b3b5b8cfb9e049"
|
||||
emotion@^9.2.4:
|
||||
version "9.2.4"
|
||||
resolved "https://registry.npmjs.org/emotion/-/emotion-9.2.4.tgz#0139e7cc154b2845f4b9afaa996dd4de13bb90e3"
|
||||
dependencies:
|
||||
babel-plugin-emotion "^9.2.0"
|
||||
create-emotion "^9.2.1"
|
||||
babel-plugin-emotion "^9.2.4"
|
||||
create-emotion "^9.2.4"
|
||||
|
||||
encodeurl@~1.0.2:
|
||||
version "1.0.2"
|
||||
@@ -4625,9 +4682,9 @@ eslint@^4.1.1:
|
||||
table "4.0.2"
|
||||
text-table "~0.2.0"
|
||||
|
||||
esm@^3.0.52:
|
||||
version "3.0.52"
|
||||
resolved "https://registry.npmjs.org/esm/-/esm-3.0.52.tgz#a3ada5b2811548a5824f448d372c5b35388cf771"
|
||||
esm@^3.0.55:
|
||||
version "3.0.55"
|
||||
resolved "https://registry.npmjs.org/esm/-/esm-3.0.55.tgz#db784239760c60b919785953eb3c01cfbc9745d4"
|
||||
|
||||
espree@^3.5.4:
|
||||
version "3.5.4"
|
||||
@@ -4906,7 +4963,7 @@ fast-deep-equal@^2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
|
||||
|
||||
fast-glob@^2.2.2:
|
||||
fast-glob@^2.0.2, fast-glob@^2.2.2:
|
||||
version "2.2.2"
|
||||
resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz#71723338ac9b4e0e2fff1d6748a2a13d5ed352bf"
|
||||
dependencies:
|
||||
@@ -5107,9 +5164,9 @@ flatten@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
|
||||
|
||||
flow-bin@^0.74.0:
|
||||
version "0.74.0"
|
||||
resolved "https://registry.npmjs.org/flow-bin/-/flow-bin-0.74.0.tgz#8017bb00efb37cbe8d81fbb7f464038bde06adc9"
|
||||
flow-bin@^0.75.0:
|
||||
version "0.75.0"
|
||||
resolved "https://registry.npmjs.org/flow-bin/-/flow-bin-0.75.0.tgz#b96d1ee99d3b446a3226be66b4013224ce9df260"
|
||||
|
||||
flow-typed@^2.4.0:
|
||||
version "2.4.0"
|
||||
@@ -5575,7 +5632,7 @@ globby@^5.0.0:
|
||||
pify "^2.0.0"
|
||||
pinkie-promise "^2.0.0"
|
||||
|
||||
globby@^6.0.0, globby@^6.1.0:
|
||||
globby@^6.1.0:
|
||||
version "6.1.0"
|
||||
resolved "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
|
||||
dependencies:
|
||||
@@ -5596,6 +5653,18 @@ globby@^7.1.1:
|
||||
pify "^3.0.0"
|
||||
slash "^1.0.0"
|
||||
|
||||
globby@^8.0.1:
|
||||
version "8.0.1"
|
||||
resolved "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50"
|
||||
dependencies:
|
||||
array-union "^1.0.1"
|
||||
dir-glob "^2.0.0"
|
||||
fast-glob "^2.0.2"
|
||||
glob "^7.1.2"
|
||||
ignore "^3.3.5"
|
||||
pify "^3.0.0"
|
||||
slash "^1.0.0"
|
||||
|
||||
globule@^1.0.0:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d"
|
||||
@@ -7220,10 +7289,6 @@ lodash.get@^4.4.2:
|
||||
version "4.4.2"
|
||||
resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
|
||||
|
||||
lodash.isobject@^3.0.2:
|
||||
version "3.0.2"
|
||||
resolved "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"
|
||||
|
||||
lodash.iteratee@^4.5.0:
|
||||
version "4.7.0"
|
||||
resolved "https://registry.npmjs.org/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz#be4177db289a8ccc3c0990f1db26b5b22fc1554c"
|
||||
@@ -7874,10 +7939,8 @@ neo-async@^2.5.0, neo-async@^2.5.1:
|
||||
resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee"
|
||||
|
||||
nested-error-stacks@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.0.tgz#98b2ffaefb4610fa3936f1e71435d30700de2840"
|
||||
dependencies:
|
||||
inherits "~2.0.1"
|
||||
version "2.0.1"
|
||||
resolved "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz#d2cc9fc5235ddb371fc44d506234339c8e4b0a4b"
|
||||
|
||||
next-tick@1:
|
||||
version "1.0.0"
|
||||
@@ -8964,9 +9027,9 @@ preserve@^0.2.0:
|
||||
version "0.2.0"
|
||||
resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
||||
|
||||
prettier@^1.13.5:
|
||||
version "1.13.5"
|
||||
resolved "https://registry.npmjs.org/prettier/-/prettier-1.13.5.tgz#7ae2076998c8edce79d63834e9b7b09fead6bfd0"
|
||||
prettier@^1.13.6:
|
||||
version "1.13.6"
|
||||
resolved "https://registry.npmjs.org/prettier/-/prettier-1.13.6.tgz#00ae0b777ad92f81a9e7a1df2f0470b6dab0cb44"
|
||||
|
||||
pretty-error@^2.0.2, pretty-error@^2.1.1:
|
||||
version "2.1.1"
|
||||
@@ -9269,11 +9332,11 @@ react-emotion@^9.1.1:
|
||||
babel-plugin-emotion "^9.2.0"
|
||||
create-emotion-styled "^9.2.1"
|
||||
|
||||
react-emotion@^9.2.3:
|
||||
version "9.2.3"
|
||||
resolved "https://registry.npmjs.org/react-emotion/-/react-emotion-9.2.3.tgz#03c3b9dc9ad282c2d50b8137f3a6f72eee5095f3"
|
||||
react-emotion@^9.2.4:
|
||||
version "9.2.4"
|
||||
resolved "https://registry.npmjs.org/react-emotion/-/react-emotion-9.2.4.tgz#98e00f70ce2ca4ee13923460123e763e492c013a"
|
||||
dependencies:
|
||||
babel-plugin-emotion "^9.2.0"
|
||||
babel-plugin-emotion "^9.2.4"
|
||||
create-emotion-styled "^9.2.3"
|
||||
|
||||
react-error-overlay@^4.0.0:
|
||||
@@ -10007,15 +10070,6 @@ rollup-plugin-commonjs@^9.1.3:
|
||||
resolve "^1.5.0"
|
||||
rollup-pluginutils "^2.0.1"
|
||||
|
||||
rollup-plugin-cpy@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.npmjs.org/rollup-plugin-cpy/-/rollup-plugin-cpy-1.0.0.tgz#495836b776639b9cf93a2c21a829b67ccff46a42"
|
||||
dependencies:
|
||||
chalk "^2.3.2"
|
||||
cpy "^6.0.0"
|
||||
lodash.isobject "^3.0.2"
|
||||
mkdirp "^0.5.1"
|
||||
|
||||
rollup-plugin-gzip@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.npmjs.org/rollup-plugin-gzip/-/rollup-plugin-gzip-1.3.0.tgz#1d2264e660dd643417f2b4b63b9c5d7a93090e87"
|
||||
@@ -10473,6 +10527,10 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
|
||||
version "0.6.1"
|
||||
resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
||||
|
||||
source-map@^0.7.2:
|
||||
version "0.7.3"
|
||||
resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
||||
|
||||
spawn-sync@^1.0.15:
|
||||
version "1.0.15"
|
||||
resolved "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
|
||||
@@ -11219,9 +11277,9 @@ uglifyjs-webpack-plugin@^1.2.4:
|
||||
webpack-sources "^1.1.0"
|
||||
worker-farm "^1.5.2"
|
||||
|
||||
uglifyjs-webpack-plugin@^1.2.6:
|
||||
version "1.2.6"
|
||||
resolved "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.6.tgz#f4bb44f02431e82b301d8d4624330a6a35729381"
|
||||
uglifyjs-webpack-plugin@^1.2.7:
|
||||
version "1.2.7"
|
||||
resolved "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.7.tgz#57638dd99c853a1ebfe9d97b42160a8a507f9d00"
|
||||
dependencies:
|
||||
cacache "^10.0.4"
|
||||
find-cache-dir "^1.0.0"
|
||||
@@ -11786,9 +11844,9 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0:
|
||||
source-list-map "^2.0.0"
|
||||
source-map "~0.6.1"
|
||||
|
||||
webpack@^4.12.0:
|
||||
version "4.12.0"
|
||||
resolved "https://registry.npmjs.org/webpack/-/webpack-4.12.0.tgz#14758e035ae69747f68dd0edf3c5a572a82bdee9"
|
||||
webpack@^4.12.1:
|
||||
version "4.12.1"
|
||||
resolved "https://registry.npmjs.org/webpack/-/webpack-4.12.1.tgz#9108078c67fdd72c2609cea22af87d7aed2acb08"
|
||||
dependencies:
|
||||
"@webassemblyjs/ast" "1.5.12"
|
||||
"@webassemblyjs/helper-module-context" "1.5.12"
|
||||
@@ -11987,9 +12045,9 @@ ws@^4.0.0:
|
||||
async-limiter "~1.0.0"
|
||||
safe-buffer "~5.1.0"
|
||||
|
||||
ws@^5.2.0:
|
||||
version "5.2.0"
|
||||
resolved "https://registry.npmjs.org/ws/-/ws-5.2.0.tgz#9fd95e3ac7c76f6ae8bcc868a0e3f11f1290c33e"
|
||||
ws@^5.2.1:
|
||||
version "5.2.1"
|
||||
resolved "https://registry.npmjs.org/ws/-/ws-5.2.1.tgz#37827a0ba772d072a843c3615b0ad38bcdb354eb"
|
||||
dependencies:
|
||||
async-limiter "~1.0.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user