trump
- github: https://github.com/monkeycf/trump
- npm: https://www.npmjs.com/package/@monkeycf/trump
- document: https://trump.chensenran.top
组织架构
- TypeScript
- Jest
- webpack
- ESLint
- Prettier
- VuePress
- pre-commit
- Treavis CI
TypeScript
项目使用TypeScript版本为3.7.5
编译脚本
1
npm run build
1 | // tsconfig.json |
Jest
实现单元测试
运行测试
1
npm run test
webpack
运行example目录下的例子
运行脚本
1
npm run start
ESLint
代码监测工具
运行脚本
1
npm run lint
1
2
3
4
5
6
7
8
9module.exports = {
parser: '@typescript-eslint/parser', // ESLint的解析器
extends: ['plugin:@typescript-eslint/recommended'],
plugins: ['@typescript-eslint'],
env: {
browser: true,
node: true,
}
};
Prettier
代码格式化工具
运行脚本
1
npm run fix
VuePress
Vue静态网站生成器,构建相关API文档(doc: https://trump.chensenran.top)
文档预览
1
npm run docs:dev
文档打包
1
npm run docs:build
pre-commit
- 管理维护(在预提交时运行相关脚本,以实现对提交代码的审核)
Treavis CI
持续集成服务
相关配置
目前有3个job,其中 ‘npm release’ 只在修改tag的提交中运行。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35// .travis.yml
language: node_js
node_js:
- '12'
install:
- npm install
jobs:
include:
- stage: test
script:
- npm run unit
- stage: GitHubPages
script:
- npm run docs:build
deploy:
provider: pages
skip_cleanup: true
github_token: $GET_REPO_TOKEN
keep_history: true
local_dir: ./docs/.vuepress/dist
fqdn: trump.chensenran.top
on:
branch: master
- stage: npm release
if: tag IS present
node_js: "12"
script: npm run build
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_TOKEN
skip_cleanup: true
tag: latest
on:
tags: true