1.0.4 • Published 6 years ago

tod-common v1.0.4

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

base-common

公共组件,公用工具类

command 命令行

# 检查不符合规范的代码
# Check for code that does not conform to the specification
npm run lint;

# 修复不符合规范的代码,可修复项见eslintrc.js 带@fix
# fix that does not conform to specification,see the eslintrc.js with fix
npm run lint:fix;

# 执行所有所有测试用例
# excute All test cases
npm run test;

发布npm包,npm publish

# 发布到npm,每次发布需要修改package.json的版本号
# 包名:tod_common
npm publish;