-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
69 changed files
with
7,335 additions
and
11,998 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,29 +4,31 @@ jobs: | |
build: | ||
|
||
environment: | ||
GITHUB_ORG: https://[email protected]/angular-schule | ||
NG_CLI_ANALYTICS: ci | ||
GITHUB_ORG: https://github.com/angular-schule | ||
GITHUB_NAME: The Buildbot | ||
GITHUB_EMAIL: [email protected] | ||
NAME: angular-cli-ghpages | ||
|
||
docker: | ||
- image: circleci/node:10-browsers | ||
- image: circleci/node:12-browsers | ||
|
||
steps: | ||
- checkout | ||
|
||
|
||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }}-{{ checksum "angular-testdrive/package.json" }} | ||
- run: npm i --silent | ||
- run: cd angular-testdrive && npm i --silent | ||
key: dependency-cache-{{ checksum "src/package.json" }} | ||
- run: cd src && npm i --silent | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }}-{{ checksum "angular-testdrive/package.json" }} | ||
key: dependency-cache-{{ checksum "src/package.json" }} | ||
paths: | ||
- node_modules | ||
- angular-testdrive/node_modules | ||
|
||
|
||
- run: cd angular-testdrive && npm run build | ||
- run: chmod +x bin/angular-cli-ghpages | ||
- run: cd angular-testdrive && ../bin/angular-cli-ghpages --repo "$GITHUB_ORG/$NAME.git" --name "$GITHUB_NAME" --email "$GITHUB_EMAIL" --dir=dist/angular-testdrive --cname=angular-cli-ghpages.angular.schule | ||
|
||
- src/node_modules | ||
- run: cd src && npm run build | ||
- run: cd src && npm run test | ||
- run: cd src/dist && sudo npm link | ||
|
||
- run: sudo -E npm install -g @angular/cli@next | ||
- run: sudo -E ng new your-angular-project --defaults | ||
- run: cd your-angular-project && sudo -E npm link angular-cli-ghpages | ||
- run: cd your-angular-project && sudo -E ng add angular-cli-ghpages | ||
- run: cd your-angular-project && sudo -E ng deploy --repo="$GITHUB_ORG/$NAME.git" --name="$GITHUB_NAME" --email="$GITHUB_EMAIL" --cname=angular-cli-ghpages.angular.schule |
File renamed without changes.
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,3 +1,27 @@ | ||
.DS_Store | ||
node_modules | ||
npm-debug.log | ||
.tmp | ||
.sass-cache | ||
.DS_Store | ||
.bash_history | ||
*.swp | ||
*.swo | ||
*.d.ts | ||
|
||
*.classpath | ||
*.project | ||
*.settings/ | ||
*.classpath | ||
*.project | ||
*.settings/ | ||
|
||
.vim/bundle | ||
nvim/autoload | ||
nvim/plugged | ||
nvim/doc | ||
nvim/swaps | ||
nvim/colors | ||
dist | ||
|
||
/src/mini-testdrive/404.html | ||
/src/mini-testdrive/CNAME | ||
.angulardoc.json |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "build", | ||
"path": "src/", | ||
"label": "npm build" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.