Skip to content

Commit

Permalink
feat: publish package in ivy partial compilation mode
Browse files Browse the repository at this point in the history
BREAKING CHANGE: angular 12 or higher is now required to use this package
  • Loading branch information
mattlewis92 committed Dec 11, 2021
1 parent 6150239 commit d9ad08c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://mattlewis92.github.io/angular-resizable-element/

## About

An angular 10.0+ directive that allows an element to be dragged and resized
An angular 12.0+ directive that allows an element to be dragged and resized

## Installation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-resizable-element",
"version": "4.0.0",
"description": "An angular 10.0+ directive that allows an element to be dragged and resized",
"description": "An angular 12.0+ directive that allows an element to be dragged and resized",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"npm run test:watch\"",
"build:demo": "ng build --configuration production",
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-resizable-element/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"types": []
},
"angularCompilerOptions": {
"enableIvy": false
"compilationMode": "partial"
}
}
4 changes: 2 additions & 2 deletions projects/demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
min-height: 100vh;
}
</style>
<title>angular 10.0+ resizable element</title>
<title>angular 12.0+ resizable element</title>
</head>
<body>
<a
Expand All @@ -31,7 +31,7 @@
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">angular 10.0+ resizable element</a>
<a class="navbar-brand" href="#">angular 12.0+ resizable element</a>
</div>
<ul class="nav navbar-nav hidden-xs">
<li><a href="#demo">Demo</a></li>
Expand Down

0 comments on commit d9ad08c

Please sign in to comment.