Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
phortx committed Nov 20, 2018
1 parent 38de979 commit 565f063
Show file tree
Hide file tree
Showing 7 changed files with 355 additions and 314 deletions.
2 changes: 1 addition & 1 deletion dist/vuex-orm-graphql.es5.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vuex-orm-graphql.es5.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vuex-orm-graphql.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vuex-orm-graphql.umd.js.map

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vuex-orm/plugin-graphql",
"version": "1.0.0-rc.22",
"version": "1.0.0-rc.23",
"description": "Vuex-ORM persistence plugin to sync the store against a GraphQL API.",
"main": "dist/vuex-orm-graphql.umd.js",
"module": "dist/vuex-orm-graphql.es5.js",
Expand Down Expand Up @@ -45,7 +45,7 @@
"author": "Benjamin Klein",
"license": "MIT",
"engines": {
"node":">=6.0.0"
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/vuex-orm/plugin-graphql/issues"
Expand All @@ -54,62 +54,62 @@
"app": "latest"
},
"peerDependencies": {
"@vuex-orm/core": "^0.27.0"
"@vuex-orm/core": "^0.30.0"
},
"devDependencies": {
"@vuex-orm/core": "^0.27.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/graphql": "^0.12.3",
"pluralize": "^7.0.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
"@types/sinon": "^5.0.1",
"@vuex-orm/core": "^0.30.0",
"apollo-cache-inmemory": "^1.1.7",
"apollo-client": "^2.2.2",
"apollo-link": "^1.2.0",
"apollo-link-http": "^1.3.2",
"apollo-link-schema": "^1.1.0",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"graphql-tools": "^3.0.4",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"colors": "^1.3.2",
"commitizen": "^3.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"graphql-tools": "^3.0.4",
"husky": "^1.0.1",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lint-staged": "^7.3.0",
"lodash.clone": "^4.5.0",
"lodash.isequal": "^4.5.0",
"node-fetch": "^2.1.1",
"normalizr": "^3.2.4",
"pluralize": "^7.0.0",
"prettier": "^1.14.3",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-babel": "^3.0.7",
"babel-preset-env": "^1.7.0",
"babel-plugin-external-helpers": "^6.22.0",
"semantic-release": "^15.9.16",
"sinon": "^6.0.0",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.3",
"vuepress": "^0.8.4",
"node-fetch": "^2.1.1",
"lodash.isequal": "^4.5.0",
"lodash.clone": "^4.5.0",
"normalizr": "^3.2.4",
"vue": "2.5.16",
"@types/sinon": "^5.0.1",
"sinon": "^6.0.0",
"vuepress": "^0.8.4",
"vuex": "^3.0.1"
},
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion test/support/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ export async function recordGraphQLRequest(callback: Function, allowToFail: bool
return {
operationName: relevantCall!.args[0].operationName,
variables: relevantCall!.args[0].variables,
query: prettify(relevantCall!.args[0].query.loc.source.body)
query: prettify(relevantCall!.args[0].query.loc!.source.body)
};
}
Loading

0 comments on commit 565f063

Please sign in to comment.