Skip to content

Commit

Permalink
feat: upgrade to Angular 9 (#1140)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
- `ng2-completer` dependency replaced by `@akveo/ng2-completer`. Read details in #1140. This is a temporary measure until the original ng2-completer fixed. We have no plans to support `@akveo/ng2-completer`.
- We no longer have a direct dependency on tslib. Instead it is now
listed a peerDependency. This matches Angular framework.
  • Loading branch information
yggg authored Mar 23, 2020
1 parent fa801f0 commit 8a4f0bb
Show file tree
Hide file tree
Showing 22 changed files with 11,711 additions and 6,904 deletions.
15 changes: 12 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"options": {
"tsConfig": "projects/ng2-smart-table/tsconfig.lib.json",
"project": "projects/ng2-smart-table/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ng2-smart-table/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand Down Expand Up @@ -53,7 +58,7 @@
"main": "projects/demo/src/main.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"tsConfig": "projects/demo/tsconfig.app.json",
"aot": false,
"aot": true,
"assets": [
"projects/demo/src/favicon.ico",
"projects/demo/src/assets"
Expand All @@ -77,7 +82,6 @@
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand All @@ -86,6 +90,10 @@
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
]
}
Expand Down Expand Up @@ -151,6 +159,7 @@
}
}
}
}},
}
},
"defaultProject": "ng2-smart-table"
}
Loading

0 comments on commit 8a4f0bb

Please sign in to comment.