Skip to content

Commit 8d8af83

Browse files
author
Matt Lewis
committed
feat: upgrade to angular 6
BREAKING CHANGE: angular 6 or higher is now required to use this package
1 parent 82df0bf commit 8d8af83

8 files changed

+534
-860
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ https://mattlewis92.github.io/angular-text-input-autocomplete/
2222

2323
## About
2424

25-
A angular 4+ directive for adding autocomplete functionality to text input elements, built around composability
25+
A angular 6+ directive for adding autocomplete functionality to text input elements, built around composability
2626

2727
## Installation
2828

karma.conf.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default (config: any) => {
5353
enforce: 'post'
5454
},
5555
{
56-
test: /node_modules\/@angular\/core\/.+\/core\.es5\.js$/,
56+
test: /node_modules\/@angular\/core\/.+\/core\.js$/,
5757
parser: {
5858
system: true // disable `System.import() is deprecated and will be removed soon. Use import() instead.` warning
5959
}
@@ -67,7 +67,7 @@ export default (config: any) => {
6767
test: /\.(ts|js)($|\?)/i
6868
}),
6969
new webpack.ContextReplacementPlugin(
70-
/angular(\\|\/)core(\\|\/)@angular/,
70+
/angular(\\|\/)core(\\|\/)fesm5/,
7171
path.join(__dirname, 'src')
7272
),
7373
...(config.singleRun

0 commit comments

Comments
 (0)