Skip to content

Commit

Permalink
Merged release/0.0.2 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
filaraujo committed Jan 27, 2016
2 parents 3eb3a11 + fc67741 commit c7cf9d6
Show file tree
Hide file tree
Showing 24 changed files with 37 additions and 39 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
lib
9 changes: 9 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

0.0.2 / 2016-01-26
==================

* setup process to run src files through babel
* cleaning up package.json
* removing bower json
* folder restructuring
* Merged release/0.0.1 into develop

0.0.1 / 2016-01-26
==================

Expand Down
18 changes: 0 additions & 18 deletions bower.json

This file was deleted.

28 changes: 17 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
{
"name": "polymer-bootlicker",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "ava test/**/* --verbose --require babel-register"
},
"version": "0.0.2",
"author": "Filipe Araujo <[email protected]>",
"license": "ISC",
"devDependencies": {
"ava": "^0.9.1",
"sinon": "^1.17.2"
},
"description": "",
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"browser-sync": "^2.10.1",
Expand All @@ -32,5 +23,20 @@
"polybuild": "^1.1.0",
"undertaker": "^0.13.1",
"web-component-tester": "^4.0.3"
},
"devDependencies": {
"ava": "^0.9.1",
"sinon": "^1.17.2"
},
"files": [
"lib",
"*.js"
],
"license": "ISC",
"main": "lib/index.js",
"scripts": {
"compile": "babel --source-maps -d lib/ src/",
"prepublish": "npm run compile",
"test": "ava test/**/* --verbose --require babel-register"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/font-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import FontRegistry from '../registries/font';
import FontRegistry from '../src/registries/font';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/html-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import HTMLRegistry from '../registries/html';
import HTMLRegistry from '../src/registries/html';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/i18n-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import I18nRegistry from '../registries/i18n';
import I18nRegistry from '../src/registries/i18n';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/image-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import ImageRegistry from '../registries/image';
import ImageRegistry from '../src/registries/image';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from 'ava';
import Bootlicker from '../index';
import Bootlicker from '../src/index';
import Undertaker from 'undertaker';

test('exports a function', t => {
Expand Down
2 changes: 1 addition & 1 deletion test/script-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import ScriptRegistry from '../registries/script';
import ScriptRegistry from '../src/registries/script';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/server-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import ServeRegistry from '../registries/server';
import ServeRegistry from '../src/registries/server';

let config = {
paths: {
Expand Down
2 changes: 1 addition & 1 deletion test/style-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import StyleRegistry from '../registries/style';
import StyleRegistry from '../src/registries/style';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/test-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import TestRegistry from '../registries/test';
import TestRegistry from '../src/registries/test';
import sinon from 'sinon';

let config = {
Expand Down
2 changes: 1 addition & 1 deletion test/tidy-registry.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import Undertaker from 'undertaker';
import TidyRegistry from '../registries/tidy';
import TidyRegistry from '../src/registries/tidy';

test('exports a function', t => {
t.true(typeof TidyRegistry === 'function');
Expand Down

0 comments on commit c7cf9d6

Please sign in to comment.