Merge branch 'release/fsevents'
Showing
6 changed files
with
32 additions
and
6 deletions
| ... | @@ -2,6 +2,13 @@ | ... | @@ -2,6 +2,13 @@ |
| 2 | 2 | ||
| 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. |
| 4 | 4 | ||
| 5 | ### [1.3.2](https://gitlab.zb100.com/templates/mui-template/compare/v1.3.1...v1.3.2) (2020-02-08) | ||
| 6 | |||
| 7 | |||
| 8 | ### Bug Fixes | ||
| 9 | |||
| 10 | * 指定fsevents版本号为1.2.9 ([cbb96f3](https://gitlab.zb100.com/templates/mui-template/commit/cbb96f3ebf4d7f288c3dd4795501bf5e67a98b2f)) | ||
| 11 | |||
| 5 | ### [1.3.1](https://gitlab.zb100.com/templates/mui-template/compare/v1.3.0...v1.3.1) (2019-12-20) | 12 | ### [1.3.1](https://gitlab.zb100.com/templates/mui-template/compare/v1.3.0...v1.3.1) (2019-12-20) |
| 6 | 13 | ||
| 7 | ## [1.3.0](https://gitlab.zb100.com/templates/mui-template/compare/v1.2.2...v1.3.0) (2019-12-17) | 14 | ## [1.3.0](https://gitlab.zb100.com/templates/mui-template/compare/v1.2.2...v1.3.0) (2019-12-17) | ... | ... |
| ... | @@ -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 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 26 | } | ... | ... |
-
Please register or sign in to post a comment