-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: formatted code and added deploy job
- Loading branch information
Showing
8 changed files
with
86 additions
and
64 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
//registry.npmjs.org/:_authToken=${NPM_TOKEN} |
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 |
---|---|---|
@@ -1,32 +1,35 @@ | ||
machine: | ||
node: | ||
version: "6" | ||
version: "8" | ||
environment: | ||
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" | ||
general: | ||
branches: | ||
ignore: | ||
- gh-pages | ||
dependencies: | ||
override: | ||
- yarn | ||
cache_directories: | ||
- ~/.cache/yarn | ||
test: | ||
pre: | ||
- yarn run clean | ||
override: | ||
- yarn test | ||
- yarn run lint | ||
- yarn run test | ||
- yarn run coverage:upload | ||
- npm run test | ||
- npm run lint | ||
- npm run test | ||
- npm run coverage:upload | ||
deployment: | ||
release: | ||
tag: /^v[0-9]+(\.[0-9]+)*$/ | ||
owner: yeojz | ||
commands: | ||
- yarn run clean | ||
- yarn run build | ||
- echo -e "$NPM_USER\n$NPM_PASS\n$NPM_EMAIL" | npm login | ||
- npx conventional-github-releaser -p angular | ||
- npm run clean | ||
- npm run build | ||
- npm publish | ||
- npm logout | ||
beta: | ||
tag: /^v[0-9]+(\.[0-9]+)*\-[0-9]+$/ | ||
owner: yeojz | ||
commands: | ||
- npx conventional-github-releaser -p angular | ||
- npm run clean | ||
- npm run build | ||
- npm publish --tag next | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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