55b246ee by McLemore

Merge branch 'release/fsevents'

2 parents 0ad4801e d16aa3e7
......@@ -2,6 +2,13 @@
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.
### [1.3.2](https://gitlab.zb100.com/templates/mui-template/compare/v1.3.1...v1.3.2) (2020-02-08)
### Bug Fixes
* 指定fsevents版本号为1.2.9 ([cbb96f3](https://gitlab.zb100.com/templates/mui-template/commit/cbb96f3ebf4d7f288c3dd4795501bf5e67a98b2f))
### [1.3.1](https://gitlab.zb100.com/templates/mui-template/compare/v1.3.0...v1.3.1) (2019-12-20)
## [1.3.0](https://gitlab.zb100.com/templates/mui-template/compare/v1.2.2...v1.3.0) (2019-12-17)
......
......@@ -2,6 +2,8 @@
### 使用方法
### 依赖基础库版本
### 开始开发
1. 本地执行`npm run dev`
2. 使用开发者工具导入`demo`目录下的工程
......
......@@ -13,6 +13,7 @@
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"fsevents": "1.2.9",
"gulp": "^4.0.2",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
......
{
"compilerOptions": {
"strictNullChecks": true,
"noImplicitAny": true,
"module": "CommonJS",
"allowJs": false,
"experimentalDecorators": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"inlineSourceMap": true,
"inlineSources": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"pretty": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"strict": true,
"typeRoots": [
"./node_modules/miniprogram-api-typings"
],
"lib": ["ES6", "ES7"],
"target": "es2017",
"module": "CommonJS"
"lib": ["ES6", "ES7", "ESNext"],
"target": "es2017"
}
}
......
{
"name": "@zb100/mui-template",
"version": "1.3.1",
"version": "1.3.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......
{
"name": "@zb100/mui-template",
"version": "1.3.1",
"version": "1.3.2",
"description": "小程序组件模版",
"main": "index.js",
"scripts": {
......