Skip to content

Commit 3bd6212

Browse files
committed
run ngcc after install
1 parent 6daac7d commit 3bd6212

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
node-version: ${{ matrix.node-version }}
1818
- name: install
1919
run: npm install
20+
- name: ngcc
21+
run: npm run ngcc
2022
- name: build
2123
run: npm run build -- --skip-nx-cache
2224
- name: test

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
node-version: ${{ matrix.node-version }}
2222
- name: install
2323
run: npm install
24+
- name: ngcc
25+
run: npm run ngcc
2426
- name: build
2527
run: npm run build -- --skip-nx-cache
2628
- name: test

apps/example-app/app/app.module.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { ComponentWithProviderComponent } from './examples/05-component-provider
2121
import { WithNgRxStoreComponent, reducer } from './examples/06-with-ngrx-store';
2222
import { WithNgRxMockStoreComponent } from './examples/07-with-ngrx-mock-store';
2323
import { MasterComponent, DetailComponent, HiddenDetailComponent } from './examples/09-router';
24-
import { DialogContentComponentModule } from './examples/15-dialog.component';
2524

2625
function reducerItems() {
2726
return ['One', 'Two', 'Three'];
@@ -58,7 +57,6 @@ function reducerItems() {
5857
value: reducer,
5958
items: reducerItems,
6059
}),
61-
DialogContentComponentModule,
6260
],
6361
bootstrap: [AppComponent],
6462
})

0 commit comments

Comments
 (0)