Skip to content
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

feat!: add support for Angular v17 #67

Merged
merged 34 commits into from
Nov 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5ec5880
feat: update plugin + demo to ng17
Skn0tt Nov 6, 2023
64ddcf2
chore: delete "advanced-routing" example
Skn0tt Nov 6, 2023
7cced17
chore: reintroduce old demo contents
Skn0tt Nov 6, 2023
deb4563
feat: also exclude prerendered routes
Skn0tt Nov 6, 2023
abf3c93
chore: delete one more file
Skn0tt Nov 6, 2023
3292d80
fix: prettier
Skn0tt Nov 6, 2023
da824f4
chore: update engine
Skn0tt Nov 6, 2023
86e2d91
fix: validate angular version
Skn0tt Nov 7, 2023
0f38708
fix: install package locally
Skn0tt Nov 7, 2023
a534083
fix: add npm i for package to fix nf build
Skn0tt Nov 7, 2023
1ec2d99
fix: make build
Skn0tt Nov 7, 2023
a7e5666
fix: custom ignore command
Skn0tt Nov 7, 2023
a0a8dc7
chore: update logo
Skn0tt Nov 7, 2023
04cfc07
fix: windows doesnt understand #
Skn0tt Nov 7, 2023
b8ccbb6
chore: update readme
Skn0tt Nov 7, 2023
ada0955
fix: update release-please statements
Skn0tt Nov 7, 2023
fb4e236
chore: replace commonmodule with v17 builtins
Skn0tt Nov 7, 2023
a36541e
feat: inject request/context
Skn0tt Nov 7, 2023
eb3daa2
fix: update eslint
Skn0tt Nov 7, 2023
8e84883
fix: license, author
Skn0tt Nov 7, 2023
0189269
chore: comment about polyfill.mjs
Skn0tt Nov 7, 2023
1ee839b
fix: ensure ts imports are posix
Skn0tt Nov 7, 2023
6a8a223
chore: fail plugin instead of build
Skn0tt Nov 7, 2023
0011259
fix: skip instead of failing
Skn0tt Nov 7, 2023
7518391
fix: base64-encode html
Skn0tt Nov 7, 2023
d782e66
fix: use package name and version for generator
Skn0tt Nov 7, 2023
0e445a4
fix: use require.resolve to find angular version
Skn0tt Nov 7, 2023
914a581
feat: detect old version of plugin
Skn0tt Nov 7, 2023
65686c6
Revert manual version bump
Skn0tt Nov 7, 2023
31b44b9
fix: detect when no SSR was set up
Skn0tt Nov 7, 2023
59c2646
fix: until we found a way to run edge functions during dev, remove them
Skn0tt Nov 8, 2023
a7e6b2c
fix: make edge function run locally
Skn0tt Nov 8, 2023
69aea8e
chore: note down limitation about netlify serve
Skn0tt Nov 8, 2023
0a43c8f
fix: update project name in code snippet
Skn0tt Nov 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ export class FooComponent {

Keep in mind that these will not be available on the client-side or during [prerendering](https://angular.dev/guide/prerendering#prerendering-parameterized-routes).

To test this in local development, run your Angular project using `netlify serve`:

```sh
netlify serve --dir dist/demo/browser
Copy link
Contributor Author

@Skn0tt Skn0tt Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can remove --dir here once netlify/cli#6133 lands

```

## CLI Usage

### Requirements
Expand Down
Loading