diff --git a/CHANGELOG.md b/CHANGELOG.md index c431a0bf..8c427ea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1 @@ -# 1.0.0 (2019-11-18) - - - - - +# 1.0.0 (2019-11-18) \ No newline at end of file diff --git a/aaa.js b/aaa.js deleted file mode 100644 index 57fb4547..00000000 --- a/aaa.js +++ /dev/null @@ -1,24 +0,0 @@ -const prompt = require('prompt') - -prompt.start(); - -// -// Get two properties from the user: username and password -// -prompt.get([{ - name: 'username', - required: true - }, { - name: 'password', - hidden: true, - conform: function (value) { - return true; - } - }], function (err, result) { - // - // Log the results. - // - console.log('Command-line input received:'); - console.log(' username: ' + result.username); - console.log(' password: ' + result.password); -}); diff --git a/commit/lib/cz/engine.js b/commit/lib/cz/engine.js index 3bd4fbd9..5401a3e5 100644 --- a/commit/lib/cz/engine.js +++ b/commit/lib/cz/engine.js @@ -21,7 +21,6 @@ const getList = (obj) => { })); }; - module.exports = function (options) { const typeList = getList(options.types); diff --git a/commitlint.config.js b/commitlint.config.js index 0730c6a6..488c42c6 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -8,7 +8,7 @@ module.exports = { 2, 'always', [ - "ci", + "ci", // 集成开发集成部署 "docs", // Adds or alters documentation. 仅仅修改了文档,比如README, CHANGELOG, CONTRIBUTE等等 "chore", // Other changes that don't modify src or test files. 改变构建流程、或者增加依赖库、工具等 "feat", // Adds a new feature. 新增feature