cbb96f3e by McLemore

fix: 指定fsevents版本号为1.2.9

1 parent 9b7b3fb4
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
2 2
3 ### 使用方法 3 ### 使用方法
4 4
5 ### 依赖基础库版本
6
5 ### 开始开发 7 ### 开始开发
6 1. 本地执行`npm run dev` 8 1. 本地执行`npm run dev`
7 2. 使用开发者工具导入`demo`目录下的工程 9 2. 使用开发者工具导入`demo`目录下的工程
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
13 "eslint": "^6.7.2", 13 "eslint": "^6.7.2",
14 "eslint-config-airbnb-base": "^14.0.0", 14 "eslint-config-airbnb-base": "^14.0.0",
15 "eslint-plugin-import": "^2.19.1", 15 "eslint-plugin-import": "^2.19.1",
16 "fsevents": "1.2.9",
16 "gulp": "^4.0.2", 17 "gulp": "^4.0.2",
17 "gulp-less": "^4.0.1", 18 "gulp-less": "^4.0.1",
18 "gulp-rename": "^2.0.0", 19 "gulp-rename": "^2.0.0",
......
1 { 1 {
2 "compilerOptions": { 2 "compilerOptions": {
3 "strictNullChecks": true,
4 "noImplicitAny": true,
5 "module": "CommonJS",
6 "allowJs": false,
7 "experimentalDecorators": true,
8 "noImplicitReturns": true,
9 "alwaysStrict": true,
10 "inlineSourceMap": true,
11 "inlineSources": true,
12 "noFallthroughCasesInSwitch": true,
13 "noUnusedLocals": true,
14 "noUnusedParameters": true,
15 "removeComments": true,
16 "pretty": true,
17 "strictPropertyInitialization": true,
18 "noImplicitThis": true,
19 "strict": true,
3 "typeRoots": [ 20 "typeRoots": [
4 "./node_modules/miniprogram-api-typings" 21 "./node_modules/miniprogram-api-typings"
5 ], 22 ],
6 "lib": ["ES6", "ES7"], 23 "lib": ["ES6", "ES7", "ESNext"],
7 "target": "es2017", 24 "target": "es2017"
8 "module": "CommonJS"
9 } 25 }
10 } 26 }
......