-
Notifications
You must be signed in to change notification settings - Fork 100
V2 - Support for Angular 17, new build system, new defaults #179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
2ce8483
WIP
JohannesHoppe b6d0225
updated most deps, remove prettier + husky
JohannesHoppe 8b955c6
allow customization of output locations
JohannesHoppe 61581f0
trigger new build
JohannesHoppe 795fd60
Update README.md
JohannesHoppe dc63c89
Update README.md
JohannesHoppe cad7b64
Update README.md
JohannesHoppe 4d2e193
Update README.md
JohannesHoppe 340ae40
Update README.md
JohannesHoppe eb42878
Update README.md
JohannesHoppe 4e42b42
Update README.md
JohannesHoppe ad678f1
Update README.md
JohannesHoppe eb49f81
+ ng deploy --dir=dist/test/browser
JohannesHoppe e31d2ba
typo
JohannesHoppe 5cf9f88
Update docs/README_standalone.md
JohannesHoppe 55a2c19
Update docs/README_standalone.md
JohannesHoppe 057a951
Update docs/README_standalone.md
JohannesHoppe fcfbcca
Update src/angular-cli-ghpages
JohannesHoppe 56019f9
Update src/deploy/schema.json
JohannesHoppe 0bbb0ff
Update src/deploy/schema.json
JohannesHoppe a1d3477
Update src/engine/engine.ts
JohannesHoppe dc1e526
Update docs/README_standalone.md
JohannesHoppe 14ee7af
Update src/engine/engine.ts
JohannesHoppe 4438530
Update src/engine/engine.ts
JohannesHoppe 1339a95
Update src/package.json
JohannesHoppe 6456b21
Update src/package.json
JohannesHoppe 9e4a450
Update docs/README_standalone.md
JohannesHoppe 52e80e1
Update src/deploy/schema.json
JohannesHoppe 3f3191f
Update src/deploy/actions.ts
JohannesHoppe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
|
@@ -36,4 +36,4 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd your-angular-project | ||
ng deploy --no-silent --name="The Buildbot" --email="[email protected]" --cname=angular-cli-ghpages.angular.schule | ||
ng deploy --name="The Buildbot" --email="[email protected]" --cname=angular-cli-ghpages.angular.schule |
This file contains hidden or 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,41 +1,38 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Standalone Program", | ||
"cwd": "${workspaceRoot}/src", | ||
"program": "${workspaceFolder}/src/dist/angular-cli-ghpages", | ||
"outFiles": [ | ||
"${workspaceFolder}/src/dist/**/*.js" | ||
], | ||
"args": [ | ||
//"--no-silent", | ||
//"--dry-run", | ||
"--dir=mini-testdrive", | ||
"--cname=angular-cli-ghpages.angular.schule" | ||
], | ||
"stopOnEntry": true, | ||
"sourceMaps": true, | ||
"preLaunchTask": "npm build", | ||
}, | ||
{ | ||
"name": "Debug Jest Tests", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"--inspect-brk", | ||
"${workspaceRoot}/src/node_modules/.bin/jest", | ||
"--runInBand" | ||
], | ||
"cwd": "${workspaceFolder}/src", | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen", | ||
"port": 9229 | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Standalone Program", | ||
"cwd": "${workspaceRoot}/src", | ||
"program": "${workspaceFolder}/src/dist/angular-cli-ghpages", | ||
"outFiles": ["${workspaceFolder}/src/dist/**/*.js"], | ||
"args": [ | ||
//"--dry-run", | ||
"--dir=mini-testdrive", | ||
"--cname=angular-cli-ghpages.angular.schule" | ||
], | ||
"stopOnEntry": true, | ||
"sourceMaps": true, | ||
"preLaunchTask": "npm build" | ||
}, | ||
{ | ||
"name": "Debug Jest Tests", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"--inspect-brk", | ||
"${workspaceRoot}/src/node_modules/.bin/jest", | ||
"--runInBand" | ||
], | ||
"cwd": "${workspaceFolder}/src", | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen", | ||
"port": 9229 | ||
} | ||
] | ||
} |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.