Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 1, 2016
1 parent c77c982 commit 4da7d41
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 13 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-bootstrapper",
"version": "1.0.0-beta.1.1.2",
"version": "1.0.0-beta.1.1.3",
"description": "Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-bootstrapper.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-bootstrapper' {
import 'core-js';
import 'aurelia-polyfills';
import { PLATFORM } from 'aurelia-pal';
import { initialize } from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['exports', 'core-js', 'aurelia-pal', 'aurelia-pal-browser'], function (exports, _coreJs, _aureliaPal, _aureliaPalBrowser) {
define(['exports', 'aurelia-polyfills', 'aurelia-pal', 'aurelia-pal-browser'], function (exports, _aureliaPolyfills, _aureliaPal, _aureliaPalBrowser) {
'use strict';

exports.__esModule = true;
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-bootstrapper.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-bootstrapper' {
import 'core-js';
import 'aurelia-polyfills';
import { PLATFORM } from 'aurelia-pal';
import { initialize } from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'core-js';
import 'aurelia-polyfills';
import {PLATFORM} from 'aurelia-pal';
import {initialize} from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-bootstrapper.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-bootstrapper' {
import 'core-js';
import 'aurelia-polyfills';
import { PLATFORM } from 'aurelia-pal';
import { initialize } from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports.__esModule = true;
exports.bootstrap = bootstrap;

require('core-js');
require('aurelia-polyfills');

var _aureliaPal = require('aurelia-pal');

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-bootstrapper.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-bootstrapper' {
import 'core-js';
import 'aurelia-polyfills';
import { PLATFORM } from 'aurelia-pal';
import { initialize } from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'core-js';
import 'aurelia-polyfills';
import {PLATFORM} from 'aurelia-pal';
import {initialize} from 'aurelia-pal-browser';

Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-bootstrapper.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-bootstrapper' {
import 'core-js';
import 'aurelia-polyfills';
import { PLATFORM } from 'aurelia-pal';
import { initialize } from 'aurelia-pal-browser';

Expand Down
4 changes: 2 additions & 2 deletions dist/system/aurelia-bootstrapper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
System.register(['core-js', 'aurelia-pal', 'aurelia-pal-browser'], function (_export) {
System.register(['aurelia-polyfills', 'aurelia-pal', 'aurelia-pal-browser'], function (_export) {
'use strict';

var PLATFORM, initialize, bootstrapQueue, sharedLoader, Aurelia;
Expand Down Expand Up @@ -134,7 +134,7 @@ System.register(['core-js', 'aurelia-pal', 'aurelia-pal-browser'], function (_ex
}

return {
setters: [function (_coreJs) {}, function (_aureliaPal) {
setters: [function (_aureliaPolyfills) {}, function (_aureliaPal) {
PLATFORM = _aureliaPal.PLATFORM;
}, function (_aureliaPalBrowser) {
initialize = _aureliaPalBrowser.initialize;
Expand Down
13 changes: 13 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### 1.0.0-beta.1.1.3 (2016-03-01)


#### Bug Fixes

* **all:** remove core-js ([60ef61a5](http://github.com/aurelia/bootstrapper/commit/60ef61a5f6cd83ce0f29c0b9242ee2aae7a47f8c))


#### Features

* **index:** use aurelia polyfills ([c77c982b](http://github.com/aurelia/bootstrapper/commit/c77c982ba24a01bf3528d887898f0895784d74ca))


### 1.0.0-beta.1.1.2 (2016-02-08)


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-bootstrapper",
"version": "1.0.0-beta.1.1.2",
"version": "1.0.0-beta.1.1.3",
"description": "Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 4da7d41

Please sign in to comment.