55b246ee by McLemore

Merge branch 'release/fsevents'

2 parents 0ad4801e d16aa3e7
...@@ -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)
......
...@@ -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 }
...\ No newline at end of file ...\ No newline at end of file
26 }
......
1 { 1 {
2 "name": "@zb100/mui-template", 2 "name": "@zb100/mui-template",
3 "version": "1.3.1", 3 "version": "1.3.2",
4 "lockfileVersion": 1, 4 "lockfileVersion": 1,
5 "requires": true, 5 "requires": true,
6 "dependencies": { 6 "dependencies": {
......
1 { 1 {
2 "name": "@zb100/mui-template", 2 "name": "@zb100/mui-template",
3 "version": "1.3.1", 3 "version": "1.3.2",
4 "description": "小程序组件模版", 4 "description": "小程序组件模版",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
......