Skip to content
This repository was archived by the owner on Aug 19, 2024. It is now read-only.

Commit c183d26

Browse files
committed
AG-1877 Vue & Angular CLI - enteprise library duplicated due to symlinks (enterprise features not available in monorepo)
1 parent 3b9918e commit c183d26

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {NgModule} from "@angular/core";
22
import {BrowserModule} from "@angular/platform-browser";
33
import {FormsModule} from "@angular/forms";
44
// ag-grid
5-
import {AgGridModule} from "ag-grid-angular/main";
5+
import {AgGridModule} from "ag-grid-angular";
66
// application
77
import {AppComponent} from "./app.component";
88
// rich grid

src/app/rich-grid-example/rich-grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import SkillFilter from '../filters/skillFilter';
66
import RefData from '../data/refData';
77

88
// only import this if you are using the ag-Grid-Enterprise
9-
import 'ag-grid-enterprise/main';
9+
import 'ag-grid-enterprise';
1010

1111
import {HeaderGroupComponent} from "../header-group-component/header-group.component";
1212
import {DateComponent} from "../date-component/date.component";

src/tsconfig.app.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"@angular/*": [
1919
"../node_modules/@angular/*"
2020
],
21+
"ag-grid": [
22+
"../node_modules/ag-grid"
23+
],
2124
"ag-grid/*": [
2225
"../node_modules/ag-grid/*"
2326
]
@@ -27,4 +30,4 @@
2730
"test.ts",
2831
"**/*.spec.ts"
2932
]
30-
}
33+
}

0 commit comments

Comments
 (0)