Skip to content

Commit

Permalink
chore(all): prepare release 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Dec 3, 2016
1 parent d1d1fe4 commit aa09bc1
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "1.1.3",
"version": "1.1.4",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2538,7 +2538,7 @@ define(['exports', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pal', 'aureli
if (targetId) {
var ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer) {
if (ins.shadowSlot || ins.lifting || ins.elementInstruction && !ins.elementInstruction.anchorIsContainer) {
content.insertBefore(_aureliaPal.DOM.createComment('view'), firstChild);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -3215,7 +3215,7 @@ export class ViewCompiler {
if (targetId) {
let ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || (ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer)) {
if (ins.shadowSlot || ins.lifting || (ins.elementInstruction && !ins.elementInstruction.anchorIsContainer)) {
content.insertBefore(DOM.createComment('view'), firstChild);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2519,7 +2519,7 @@ var ViewCompiler = exports.ViewCompiler = (_dec7 = (0, _aureliaDependencyInjecti
if (targetId) {
var ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer) {
if (ins.shadowSlot || ins.lifting || ins.elementInstruction && !ins.elementInstruction.anchorIsContainer) {
content.insertBefore(_aureliaPal.DOM.createComment('view'), firstChild);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2295,7 +2295,7 @@ export let ViewCompiler = (_dec7 = inject(BindingLanguage, ViewResources), _dec7
if (targetId) {
let ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer) {
if (ins.shadowSlot || ins.lifting || ins.elementInstruction && !ins.elementInstruction.anchorIsContainer) {
content.insertBefore(DOM.createComment('view'), firstChild);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2482,7 +2482,7 @@ export var ViewCompiler = (_dec7 = inject(BindingLanguage, ViewResources), _dec7
if (targetId) {
var ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer) {
if (ins.shadowSlot || ins.lifting || ins.elementInstruction && !ins.elementInstruction.anchorIsContainer) {
content.insertBefore(DOM.createComment('view'), firstChild);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2941,7 +2941,7 @@ System.register(['aurelia-logging', 'aurelia-metadata', 'aurelia-pal', 'aurelia-
if (targetId) {
var ins = instructions[targetId];

if (ins.shadowSlot || ins.lifting || ins.elementInstruction !== null && !ins.elementInstruction.anchorIsContainer) {
if (ins.shadowSlot || ins.lifting || ins.elementInstruction && !ins.elementInstruction.anchorIsContainer) {
content.insertBefore(DOM.createComment('view'), firstChild);
}
}
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.1.4"></a>
## [1.1.4](https://github.com/aurelia/templating/compare/1.1.3...v1.1.4) (2016-12-03)


### Bug Fixes

* **view-compiler:** account for undefined element instruction ([d1d1fe4](https://github.com/aurelia/templating/commit/d1d1fe4)), closes [#503](https://github.com/aurelia/templating/issues/503)



<a name="1.1.3"></a>
## [1.1.3](https://github.com/aurelia/templating/compare/1.1.2...v1.1.3) (2016-12-03)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "1.1.3",
"version": "1.1.4",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit aa09bc1

Please sign in to comment.