Skip to content

Commit

Permalink
fix: babel build via the workaround https://phabricator.babeljs.io/T2…
Browse files Browse the repository at this point in the history
…877#78089

Huh, it's to tricky to use Map/Set in ES5.
  • Loading branch information
nodkz committed Aug 15, 2016
1 parent a53848d commit 4cb50a6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"env": {
"development": {
"passPerPreset": true,
"presets": [
["es2015", {"modules": "commonjs"}]
{ "plugins": [ "transform-runtime" ] },
{
"passPerPreset": false,
"presets": ["es2015"]
}
],
"plugins": [
"syntax-async-functions",
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## master

## 1.0.7 (August 15, 2016)
- fix: babel build via the workaround https://phabricator.babeljs.io/T2877#78089 Huh, it's to tricky to use Map/Set in ES5.

## 1.0.6 (August 13, 2016)
- fix: babel build process

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-compose-connection",
"version": "1.0.6",
"version": "1.0.7",
"description": "Plugin for `graphql-compose` which provide a connection resolver for types.",
"files": [
"es",
Expand Down Expand Up @@ -34,6 +34,7 @@
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-plugin-transform-regenerator": "6.11.4",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.13.2",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
Expand All @@ -59,5 +60,8 @@
"test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
"watch": "babel-node ./resources/watch.js",
"link": "npm link graphql && npm link graphql-compose && npm link"
},
"dependencies": {
"babel-runtime": "6.11.6"
}
}

0 comments on commit 4cb50a6

Please sign in to comment.