Skip to content

Commit

Permalink
Update version and update entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen van der Heijden committed Jun 6, 2018
1 parent 9814825 commit 6273446
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"presets": [
"env"
"env"
],
"plugins": [
"transform-class-properties",
"transform-object-entries",
"transform-object-rest-spread",
"syntax-dynamic-import"
"transform-class-properties",
"transform-object-entries",
"transform-object-rest-spread",
"syntax-dynamic-import",
"transform-es2015-classes"
]
}
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/node_modules/
/dist/
1 change: 1 addition & 0 deletions dist/vlow.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import Component from './lib/component';
import {createActions} from './lib/actions';

const Vlow = {
version: '1.0.0',
version: '1.0.1',
};

Vlow.Store = Store;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "vlow",
"version": "1.0.0",
"version": "1.0.1",
"description": "A simple library for unidirectional dataflow architecture inspired by Reflux",
"main": "vlow.js",
"main": "dist/vlow.js",
"scripts": {
"test": "mocha --require babel-core/register",
"build:dev": "webpack -d --progress --profile --colors",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
import React from 'react';
import assert from 'assert';
import Vlow from './dist/vlow';
import Vlow from './index';


let TestActions = Vlow.createActions(['add', 'pop']);
Expand Down

0 comments on commit 6273446

Please sign in to comment.