Skip to content

Commit

Permalink
chore(angular-query): update example dev containers to node 22 (#8370)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoud-dv authored Nov 28, 2024
1 parent c361be4 commit f245792
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/angular/basic/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
3 changes: 1 addition & 2 deletions examples/angular/devtools-panel/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ChangeDetectionStrategy, Component } from '@angular/core'
import { RouterLink, RouterOutlet } from '@angular/router'
import { ExampleQueryComponent } from './components/example-query.component'

@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
Expand All @@ -17,6 +16,6 @@ import { ExampleQueryComponent } from './components/example-query.component'
<router-outlet />
`,
imports: [ExampleQueryComponent, RouterOutlet, RouterLink],
imports: [RouterOutlet, RouterLink],
})
export class AppComponent {}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
4 changes: 4 additions & 0 deletions examples/angular/pagination/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
2 changes: 1 addition & 1 deletion examples/angular/router/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
2 changes: 1 addition & 1 deletion examples/angular/rxjs/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}
2 changes: 1 addition & 1 deletion examples/angular/simple/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:18"
"image": "mcr.microsoft.com/devcontainers/javascript-node:22"
}

0 comments on commit f245792

Please sign in to comment.