diff --git a/.babelrc b/.babelrc index 19a782f..24c3b21 100644 --- a/.babelrc +++ b/.babelrc @@ -1,6 +1,5 @@ { - "presets": ["es2015", "stage-2"], - "plugins": ["add-module-exports"], + "presets": ["yoctol"], "env": { "test": { "presets": ["react"] diff --git a/.travis.yml b/.travis.yml index c4aac19..600c83c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ sudo: false language: node_js node_js: - - "4" - - "6" - "7" + - "6" + - "4" cache: directories: - node_modules diff --git a/CHANGELOG.md b/CHANGELOG.md index d2e5690..6e78f25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,11 @@ -# 1.0.2 (2016/9/15) +1.0.2 / 2016-09-15 +================== +- [fix] **Fix default export** -#### Bugs Fixed - -- **Fix default export** - - -# 1.0.1 (2016/9/15) - -#### Bugs Fixed - -- Added missing dependencies: **rimraf**, **jsdom** - - -# 1.0.0 (2016/9/15) - -#### Features +1.0.1 / 2016-09-15 +================== +- [fix] Added missing dependencies: **rimraf**, **jsdom** +1.0.0 / 2016-09-15 +================== - **Basic Implement** diff --git a/LICENSE b/LICENSE index 287a654..cb9c00a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016 Yoctol (github.com/Yoctol/async-update-props) +Copyright (c) 2016-present Yoctol (github.com/Yoctol/async-update-props) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 5dbbd62..c87fa07 100644 --- a/package.json +++ b/package.json @@ -29,14 +29,12 @@ "recompose": "^0.21.2" }, "devDependencies": { - "babel-cli": "^6.18.0", + "babel-cli": "^6.22.0", "babel-eslint": "^7.1.1", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-polyfill": "^6.20.0", - "babel-preset-es2015": "^6.18.0", - "babel-preset-react": "^6.16.0", - "babel-preset-stage-2": "^6.18.0", - "babel-register": "^6.18.0", + "babel-polyfill": "^6.22.0", + "babel-preset-react": "^6.22.0", + "babel-preset-yoctol": "^0.3.0", + "babel-register": "^6.22.0", "chai": "^3.5.0", "chai-enzyme": "^0.6.1", "dirty-chai": "^1.2.2", diff --git a/src/index.js b/src/index.js index 3147402..f0f79d6 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,3 @@ import asyncUpdateProps from './asyncUpdateProps'; -export default asyncUpdateProps; +module.exports = asyncUpdateProps;