-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
伍程凯
committed
Jul 16, 2018
1 parent
573dd4b
commit a6b9fe7
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,11 @@ | |
"lint": "tslint --project tsconfig.json", | ||
"docs:lint": "documentation lint dist/**", | ||
"docs:deploy": "npm run docs && cp -r .circleci docs && gh-pages -d docs -t", | ||
"docs": "rm -rf docs/ dist/ && npm run dev && documentation build dist/** -f html -o docs", | ||
"docs": "npm run dev && documentation build dist/** -f html -o docs", | ||
"build": "npm run dev && bili --format cjs --filename '[name].js' --exports 'named'", | ||
"dev": "rm -rf dist/ libs/ && tsc", | ||
"dev": "tsc", | ||
"test:unit": "jest", | ||
"postversion": "npm run build && npm run docs:deploy", | ||
"postversion": "rm -rf dist/ libs/ && npm run build && npm run docs:deploy", | ||
"postbuild": "cp dist/*.d.ts libs" | ||
}, | ||
"author": "Army-U <[email protected]>", | ||
|