-
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.
V2 - Support for Angular 17, new build system, new defaults (#179)
* WIP * updated most deps, remove prettier + husky * allow customization of output locations see angular/angular-cli#26675 * trigger new build * Update README.md * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update README.md Co-authored-by: Ferdinand Malcher <[email protected]> * + ng deploy --dir=dist/test/browser * typo * Update docs/README_standalone.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update docs/README_standalone.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update docs/README_standalone.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/angular-cli-ghpages Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/deploy/schema.json Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/deploy/schema.json Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/engine/engine.ts Co-authored-by: Ferdinand Malcher <[email protected]> * Update docs/README_standalone.md * Update src/engine/engine.ts Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/engine/engine.ts Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/package.json Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/package.json Co-authored-by: Ferdinand Malcher <[email protected]> * Update docs/README_standalone.md Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/deploy/schema.json Co-authored-by: Ferdinand Malcher <[email protected]> * Update src/deploy/actions.ts Co-authored-by: Ferdinand Malcher <[email protected]> --------- Co-authored-by: Ferdinand Malcher <[email protected]>
- Loading branch information
1 parent
56b2bd7
commit dfc4b18
Showing
17 changed files
with
2,649 additions
and
10,908 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 |
---|---|---|
|
@@ -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 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 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
Oops, something went wrong.