Skip to content

Commit

Permalink
feat: upgrade to angular 6
Browse files Browse the repository at this point in the history
BREAKING CHANGE: angular 6 and rxjs 6 or higher are now required to use this package
  • Loading branch information
Matt Lewis committed May 9, 2018
1 parent 7a3f018 commit c7e3de6
Show file tree
Hide file tree
Showing 8 changed files with 189 additions and 411 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ https://mattlewis92.github.io/angular-resizable-element/demo/

## About

An angular 5.0+ directive that allows an element to be dragged and resized
An angular 6.0+ directive that allows an element to be dragged and resized

## Installation

Expand Down
4 changes: 2 additions & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
min-height: 100vh;
}
</style>
<title>angular 5.0+ resizable element</title>
<title>angular 6.0+ resizable element</title>
</head>
<body>

Expand All @@ -25,7 +25,7 @@
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">angular 5.0+ resizable element</a>
<a class="navbar-brand" href="#">angular 6.0+ resizable element</a>
</div>
<ul class="nav navbar-nav hidden-xs">
<li><a href="#demo">Demo</a></li>
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function(config: any) {
test: /\.(ts|js)($|\?)/i
}),
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)esm5/,
/angular(\\|\/)core(\\|\/)fesm5/,
__dirname + '/src'
),
...(!config.singleRun
Expand Down
Loading

0 comments on commit c7e3de6

Please sign in to comment.