From cb761f8aa5ce108b0978584a3ad0590dc9888427 Mon Sep 17 00:00:00 2001 From: Rob Eisenberg Date: Mon, 8 Jun 2015 23:56:14 -0400 Subject: [PATCH] chore(all): prepare release 0.2.0 --- dist/amd/hello-world.js | 4 ++-- dist/amd/index.js | 4 ++-- dist/commonjs/hello-world.js | 4 ++-- dist/commonjs/index.js | 4 ++-- dist/es6/index.js | 2 +- dist/system/hello-world.js | 10 +++++----- dist/system/index.js | 10 +++++----- doc/CHANGELOG.md | 14 ++++++++++++++ doc/api.json | 1 + package.json | 2 +- 10 files changed, 35 insertions(+), 20 deletions(-) create mode 100644 doc/CHANGELOG.md create mode 100644 doc/api.json diff --git a/dist/amd/hello-world.js b/dist/amd/hello-world.js index 7527fa8..066b838 100644 --- a/dist/amd/hello-world.js +++ b/dist/amd/hello-world.js @@ -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); }; diff --git a/dist/amd/index.js b/dist/amd/index.js index f5bf33f..7ef36e8 100644 --- a/dist/amd/index.js +++ b/dist/amd/index.js @@ -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'); } }); \ No newline at end of file diff --git a/dist/commonjs/hello-world.js b/dist/commonjs/hello-world.js index 41e91f4..42f667a 100644 --- a/dist/commonjs/hello-world.js +++ b/dist/commonjs/hello-world.js @@ -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); }; diff --git a/dist/commonjs/index.js b/dist/commonjs/index.js index aa647d4..fab9977 100644 --- a/dist/commonjs/index.js +++ b/dist/commonjs/index.js @@ -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'); } \ No newline at end of file diff --git a/dist/es6/index.js b/dist/es6/index.js index 996e53e..185d4b5 100644 --- a/dist/es6/index.js +++ b/dist/es6/index.js @@ -1,3 +1,3 @@ -export function install(aurelia){ +export function configure(aurelia){ aurelia.globalizeResources('./hello-world'); } diff --git a/dist/system/hello-world.js b/dist/system/hello-world.js index 8113fab..3a01226 100644 --- a/dist/system/hello-world.js +++ b/dist/system/hello-world.js @@ -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); }; diff --git a/dist/system/index.js b/dist/system/index.js index cf35646..989320e 100644 --- a/dist/system/index.js +++ b/dist/system/index.js @@ -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 () {} }; }); \ No newline at end of file diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md new file mode 100644 index 0000000..590cd9c --- /dev/null +++ b/doc/CHANGELOG.md @@ -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)) + diff --git a/doc/api.json b/doc/api.json new file mode 100644 index 0000000..6de3c0a --- /dev/null +++ b/doc/api.json @@ -0,0 +1 @@ +{"classes":[],"methods":[],"properties":[],"events":[]} \ No newline at end of file diff --git a/package.json b/package.json index 35121e0..39b03d1 100644 --- a/package.json +++ b/package.json @@ -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",