9521a0d7 by McLemore

Merge branch 'release/questions'

2 parents d1274584 432e0e7f
......@@ -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.2.0](https://gitlab.zb100.com/templates/mui-template/compare/v1.1.0...v1.2.0) (2019-12-17)
### Features
* add questions for init ([7a660a1](https://gitlab.zb100.com/templates/mui-template/commit/7a660a1aaf76fbab20447bc4d43e05a0fe136bd6))
## 1.1.0 (2019-12-14)
......
{
"name": "@zb100/${repository}",
"name": "@zb100/${projectName}",
"version": "1.0.0",
"description": "",
"description": "${description}",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
......@@ -32,7 +32,7 @@
},
"repository": {
"type": "git",
"url": "ssh://git@gitlab.zb100.com:10022/mui/${repository}.git"
"url": "ssh://git@gitlab.zb100.com:10022/mui/${repo}.git"
},
"author": "${author}",
"license": "ISC",
......
module.exports = {
projectName: {
desc: '请输入工程名称',
default: 'my-awesome-project'
},
description: {
desc: '请输入工程描述',
default: 'my awesome project'
},
author: {
desc: '请输入开发者名称',
default: ''
},
repo: {
desc: '请输入 git 仓库名',
default: 'my-awesome-project'
}
}
\ No newline at end of file
{
"name": "@zb100/mui-template",
"version": "1.1.0",
"version": "1.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......
{
"name": "@zb100/mui-template",
"version": "1.1.0",
"version": "1.2.0",
"description": "小程序组件模版",
"main": "index.js",
"scripts": {
"release": "standard-version",
"commit": "npx git-cz"
......