chore: add vant-cli pacakge

This commit is contained in:
陈嘉涵 2019-08-22 11:46:40 +08:00
parent c5514f73b8
commit 8cca48131e
6 changed files with 67 additions and 1 deletions

View File

@ -17,7 +17,7 @@
"dev": "npm run build:entry && webpack-dev-server --config build/webpack.dev.js",
"lint": "eslint ./src --ext .js,.vue,.ts,.tsx && stylelint \"src/**/*.less\" --fix",
"build:entry": "node build/build-entry.js",
"build:changelog": "vant-doc changelog ./docs/markdown/changelog.generated.md --tag 2.0.0",
"build:changelog": "vant changelog ./docs/markdown/changelog.generated.md --tag 2.0.0",
"build:lib": "node build/build-lib.js",
"test": "jest",
"test:watch": "jest --watch",
@ -70,6 +70,7 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.16",
"@vant/cli": "^0.1.1",
"@vant/doc": "^2.4.0",
"@vant/eslint-config": "^1.2.4",
"@vant/markdown-loader": "^2.2.0",

View File

@ -0,0 +1,18 @@
{
"name": "@vant/cli",
"version": "0.1.1",
"description": "vant cli tools",
"main": "./src/index.js",
"bin": {
"vant": "./src/index.js"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-cli",
"dependencies": {
"commander": "^2.17.1",
"shelljs": "^0.8.2"
}
}

View File

@ -0,0 +1,25 @@
const path = require('path');
const shelljs = require('shelljs');
function changelog(dist, cmd) {
const basepath = process.cwd();
const tag = cmd.tag || 'v1.0.0';
shelljs.exec(`
basepath=${basepath}
github_changelog_generator \
--header-label "# 更新日志" \
--bugs-label "**Bug Fixes**" \
--enhancement-label "**Breaking changes**" \
--issues-label "**Issue**" \
--pr-label "**Improvements**" \
--no-issues \
--no-unreleased \
--since-tag ${tag} \
-o ${path.join(basepath, dist)}
`
);
}
module.exports = changelog;

View File

@ -0,0 +1,11 @@
#!/usr/bin/env node
const commander = require('commander');
const changelog = require('./changelog');
commander
.command('changelog <dir>')
.option('--tag [tag]', 'Since tag')
.action(changelog);
commander.parse(process.argv);

View File

@ -9,6 +9,9 @@
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"release": "npm run build && npm publish"

View File

@ -1202,6 +1202,14 @@
lodash.unescape "4.0.1"
semver "5.5.0"
"@vant/cli@^0.1.1":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@vant/cli/-/cli-0.1.1.tgz#d3513aa74b66bb3654d461198fd2b897ff155530"
integrity sha512-C7i4cVM5dCjcV6IgHhqwpdB/igGHL4/Dpxl50uyGk5Ac34E51iIUwgMXrA6xSjrtuwXW4yfwww9oNp92Vq/WqA==
dependencies:
commander "^2.17.1"
shelljs "^0.8.2"
"@vant/doc@^2.4.0":
version "2.4.0"
resolved "https://registry.yarnpkg.com/@vant/doc/-/doc-2.4.0.tgz#d0d2d03e7ed831795ebdf9d840208614d4051057"