From a44b833bc58942fa326283d36db1ec49c2eac48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=B8=85?= Date: Tue, 3 Jul 2018 16:00:24 +0800 Subject: [PATCH] chage temp file path --- .gitignore | 2 +- package.json | 14 +++++++------- webpack.config.js | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 2a2a8c8b..93e89407 100755 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ jsconfig.json *.log functions/mock -temp/** +.temp/** diff --git a/package.json b/package.json index 33cecf33..f8b8a1b1 100755 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "@antv/data-set": "^0.8.0", - "antd": "^3.6.2", + "antd": "^3.6.5", "bizcharts": "^3.1.10", "bizcharts-plugin-slider": "^2.0.3", "classnames": "^2.2.6", @@ -33,17 +33,17 @@ "lodash": "^4.17.4", "lodash-decorators": "^6.0.0", "lodash.isequal": "^4.5.0", - "moment": "^2.22.0", + "moment": "^2.22.2", "numeral": "^2.0.6", "omit.js": "^1.0.0", "path-to-regexp": "^2.1.0", "prop-types": "^15.5.10", - "qs": "^6.5.0", - "rc-drawer": "^1.5.1", - "react": "^16.4.0", + "qs": "^6.5.2", + "rc-drawer": "^1.5.2", + "react": "^16.4.1", "react-container-query": "^0.11.0", "react-document-title": "^2.0.3", - "react-dom": "^16.4.0", + "react-dom": "^16.4.1", "react-fittext": "^1.0.0", "rollbar": "^2.3.4", "rollup": "^0.62.0", @@ -78,7 +78,7 @@ "husky": "^0.14.3", "lint-staged": "^7.2.0", "mockjs": "^1.0.1-beta3", - "prettier": "1.13.6", + "prettier": "1.13.7", "pro-download": "^1.0.1", "redbox-react": "^1.5.0", "regenerator-runtime": "^0.12.0", diff --git a/webpack.config.js b/webpack.config.js index e29a1db5..d57b6fd0 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,7 @@ const path = require('path'); export default webpackConfig => { // 将所有 less 合并为一个供 themePlugin使用 - const outFile = path.join(__dirname, './temp/ant-design-pro.less'); + const outFile = path.join(__dirname, './.temp/ant-design-pro.less'); const stylesDir = path.join(__dirname, './src/'); const mergeLessPlugin = new MergeLessPlugin({ -- GitLab