Skip to content

Commit

Permalink
chore(all): prepare release 0.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 16, 2015
1 parent 71c67c2 commit 8186960
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 12 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": "0.13.5",
"version": "0.13.6",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
5 changes: 3 additions & 2 deletions dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
content.appendChild(document.createComment('</view>'));

var factory = new ViewFactory(content, instructions, resources);
factory.surrogateInstruction = templateOrFragment.content ? this.compileSurrogate(templateOrFragment, resources) : null;
factory.surrogateInstruction = options.compileSurrogate ? this.compileSurrogate(templateOrFragment, resources) : null;

if (part) {
factory.part = part;
Expand Down Expand Up @@ -2427,7 +2427,8 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
viewStrategy = viewStrategy || this.viewStrategy || ViewStrategy.getDefault(target);
options = {
targetShadowDOM: this.targetShadowDOM,
beforeCompile: target.beforeCompile
beforeCompile: target.beforeCompile,
compileSurrogate: true
};

if (!viewStrategy.moduleId) {
Expand Down
5 changes: 3 additions & 2 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,7 @@ var ViewCompiler = (function () {
content.appendChild(document.createComment('</view>'));

var factory = new ViewFactory(content, instructions, resources);
factory.surrogateInstruction = templateOrFragment.content ? this.compileSurrogate(templateOrFragment, resources) : null;
factory.surrogateInstruction = options.compileSurrogate ? this.compileSurrogate(templateOrFragment, resources) : null;

if (part) {
factory.part = part;
Expand Down Expand Up @@ -2446,7 +2446,8 @@ var HtmlBehaviorResource = (function () {
viewStrategy = viewStrategy || this.viewStrategy || ViewStrategy.getDefault(target);
options = {
targetShadowDOM: this.targetShadowDOM,
beforeCompile: target.beforeCompile
beforeCompile: target.beforeCompile,
compileSurrogate: true
};

if (!viewStrategy.moduleId) {
Expand Down
5 changes: 3 additions & 2 deletions dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ export class ViewCompiler {
content.appendChild(document.createComment('</view>'));

var factory = new ViewFactory(content, instructions, resources);
factory.surrogateInstruction = templateOrFragment.content ? this.compileSurrogate(templateOrFragment, resources) : null;
factory.surrogateInstruction = options.compileSurrogate ? this.compileSurrogate(templateOrFragment, resources) : null;

if(part){
factory.part = part;
Expand Down Expand Up @@ -2246,7 +2246,8 @@ export class HtmlBehaviorResource {
viewStrategy = viewStrategy || this.viewStrategy || ViewStrategy.getDefault(target);
options = {
targetShadowDOM:this.targetShadowDOM,
beforeCompile:target.beforeCompile
beforeCompile:target.beforeCompile,
compileSurrogate:true
};

if(!viewStrategy.moduleId){
Expand Down
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ export class ViewCompiler {
content.appendChild(document.createComment('</view>'));

var factory = new ViewFactory(content, instructions, resources);
factory.surrogateInstruction = templateOrFragment.content ? this.compileSurrogate(templateOrFragment, resources) : null;
factory.surrogateInstruction = options.compileSurrogate ? this.compileSurrogate(templateOrFragment, resources) : null;

if(part){
factory.part = part;
Expand Down Expand Up @@ -2246,7 +2246,8 @@ export class HtmlBehaviorResource {
viewStrategy = viewStrategy || this.viewStrategy || ViewStrategy.getDefault(target);
options = {
targetShadowDOM:this.targetShadowDOM,
beforeCompile:target.beforeCompile
beforeCompile:target.beforeCompile,
compileSurrogate:true
};

if(!viewStrategy.moduleId){
Expand Down
5 changes: 3 additions & 2 deletions dist/system/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1613,7 +1613,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
content.appendChild(document.createComment('</view>'));

var factory = new ViewFactory(content, instructions, resources);
factory.surrogateInstruction = templateOrFragment.content ? this.compileSurrogate(templateOrFragment, resources) : null;
factory.surrogateInstruction = options.compileSurrogate ? this.compileSurrogate(templateOrFragment, resources) : null;

if (part) {
factory.part = part;
Expand Down Expand Up @@ -2615,7 +2615,8 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
viewStrategy = viewStrategy || this.viewStrategy || ViewStrategy.getDefault(target);
options = {
targetShadowDOM: this.targetShadowDOM,
beforeCompile: target.beforeCompile
beforeCompile: target.beforeCompile,
compileSurrogate: true
};

if (!viewStrategy.moduleId) {
Expand Down
9 changes: 9 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 0.13.6 (2015-07-15)


#### Bug Fixes

* **all:** improve several d.ts definitions with better type info ([51cad257](http://github.com/aurelia/templating/commit/51cad25703786f4edfaa5e08db2ef2c8bf5fc126), closes [#132](http://github.com/aurelia/templating/issues/132))
* **view-compiler:** template elements with template controllers work again ([71c67c21](http://github.com/aurelia/templating/commit/71c67c2109284f6c4adfaa35609b67e66ed11b80), closes [#133](http://github.com/aurelia/templating/issues/133))


### 0.13.5 (2015-07-14)


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": "0.13.5",
"version": "0.13.6",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 8186960

Please sign in to comment.