🆙 fs-extra -> fs

This commit is contained in:
afc163 2019-09-14 15:35:44 +08:00
parent a9498bbbe2
commit ba0af6e622
No known key found for this signature in database
GPG Key ID: 5F00908D72002306
2 changed files with 1 additions and 2 deletions

View File

@ -183,7 +183,6 @@
"eslint-plugin-react": "^7.14.2", "eslint-plugin-react": "^7.14.2",
"eslint-tinker": "^0.5.0", "eslint-tinker": "^0.5.0",
"fetch-jsonp": "^1.1.3", "fetch-jsonp": "^1.1.3",
"fs-extra": "^8.1.0",
"full-icu": "^1.3.0", "full-icu": "^1.3.0",
"glob": "^7.1.4", "glob": "^7.1.4",
"husky": "^3.0.2", "husky": "^3.0.2",

View File

@ -1,7 +1,7 @@
const path = require('path'); const path = require('path');
const yfm = require('yaml-front-matter'); const yfm = require('yaml-front-matter');
const glob = require('glob'); const glob = require('glob');
const fs = require('fs-extra'); const fs = require('fs');
const demoFiles = glob.sync(path.join(process.cwd(), 'components/**/demo/*.md')); const demoFiles = glob.sync(path.join(process.cwd(), 'components/**/demo/*.md'));
// eslint-disable-next-line no-restricted-syntax // eslint-disable-next-line no-restricted-syntax