Skip to content

Commit

Permalink
Update all the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abdonrd committed Oct 15, 2019
1 parent 50a850e commit 7818b80
Show file tree
Hide file tree
Showing 5 changed files with 1,446 additions and 1,010 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"presets": [ "es2015" ]
"presets": [ "@babel/preset-env" ]
}
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@
"homepage": "https://github.com/apollographql/graphql-tag#readme",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^4.0.2",
"graphql": "^14.0.2",
"mocha": "^3.4.1",
"rollup": "^0.45.0",
"test-all-versions": "^3.3.2"
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"chai": "^4.2.0",
"graphql": "^14.5.0",
"mocha": "^6.2.0",
"rollup": "^1.23.0",
"test-all-versions": "^4.1.0"
},
"peerDependencies": {
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
Expand Down
12 changes: 7 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
export default {
entry: 'src/index.js',
dest: 'lib/graphql-tag.umd.js',
format: 'umd',
sourceMap: true,
moduleName: 'graphql-tag',
input: 'src/index.js',
output: {
file: 'lib/graphql-tag.umd.js',
format: 'umd',
name: 'graphql-tag',
sourcemap: true
},
onwarn
};

Expand Down
2 changes: 1 addition & 1 deletion test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
--require babel-register
--require @babel/register
Loading

0 comments on commit 7818b80

Please sign in to comment.