Skip to content

Commit

Permalink
chore(all): prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 9, 2015
1 parent 52a7ae8 commit cb761f8
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 20 deletions.
4 changes: 2 additions & 2 deletions dist/amd/hello-world.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
define(["exports"], function (exports) {
"use strict";

var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };

Object.defineProperty(exports, "__esModule", {
value: true
});

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

var HelloWorld = function HelloWorld() {
_classCallCheck(this, HelloWorld);
};
Expand Down
4 changes: 2 additions & 2 deletions dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ define(['exports'], function (exports) {
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.install = install;
exports.configure = configure;

function install(aurelia) {
function configure(aurelia) {
aurelia.globalizeResources('./hello-world');
}
});
4 changes: 2 additions & 2 deletions dist/commonjs/hello-world.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"use strict";

var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };

Object.defineProperty(exports, "__esModule", {
value: true
});

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

var HelloWorld = function HelloWorld() {
_classCallCheck(this, HelloWorld);
};
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.install = install;
exports.configure = configure;

function install(aurelia) {
function configure(aurelia) {
aurelia.globalizeResources('./hello-world');
}
2 changes: 1 addition & 1 deletion dist/es6/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function install(aurelia){
export function configure(aurelia){
aurelia.globalizeResources('./hello-world');
}
10 changes: 5 additions & 5 deletions dist/system/hello-world.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
System.register([], function (_export) {
var _classCallCheck, HelloWorld;
"use strict";

var HelloWorld;

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

return {
setters: [],
execute: function () {
"use strict";

_classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };

HelloWorld = function HelloWorld() {
_classCallCheck(this, HelloWorld);
};
Expand Down
10 changes: 5 additions & 5 deletions dist/system/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
System.register([], function (_export) {
_export('install', install);
'use strict';

function install(aurelia) {
_export('configure', configure);

function configure(aurelia) {
aurelia.globalizeResources('./hello-world');
}

return {
setters: [],
execute: function () {
'use strict';
}
execute: function () {}
};
});
14 changes: 14 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 0.2.0 (2015-06-08)


#### Bug Fixes

* **all:**
* update to latest plugin api ([a050d736](http://github.com/aurelia/skeleton-plugin/commit/a050d736d32811066ffa902615cc73e1a5cbb6e3))
* update compiler ([faf51acc](http://github.com/aurelia/skeleton-plugin/commit/faf51accc1514c6767eaed60df16dd3d586b5cc5))


#### Features

* **all:** initial commit of skeleton ([51a036d1](http://github.com/aurelia/skeleton-plugin/commit/51a036d146750a0bafd443dbc3def51ef7f89f6e))

1 change: 1 addition & 0 deletions doc/api.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"classes":[],"methods":[],"properties":[],"events":[]}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-skeleton-plugin",
"version": "0.1.0",
"version": "0.2.0",
"description": "A starter kit for building an Aurelia plugin.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit cb761f8

Please sign in to comment.