Skip to content

Commit

Permalink
Bump all packages (#3867)
Browse files Browse the repository at this point in the history
* Bump all packages

* Fix cross-helpers

* ..
  • Loading branch information
ardatan committed Apr 25, 2022
1 parent 26b2a11 commit 7856f92
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 595 deletions.
57 changes: 57 additions & 0 deletions .changeset/smooth-peaches-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
'@graphql-mesh/config': patch
'@graphql-mesh/apollo-link': patch
'@graphql-mesh/cache-file': patch
'@graphql-mesh/cache-inmemory-lru': patch
'@graphql-mesh/cache-localforage': patch
'@graphql-mesh/cache-redis': patch
'@graphql-mesh/cache-store': patch
'@graphql-mesh/cli': patch
'@graphql-mesh/container': patch
'@graphql-mesh/cross-helpers': patch
'@graphql-mesh/graphql': patch
'@graphql-mesh/grpc': patch
'@graphql-mesh/json-schema': patch
'@graphql-mesh/mongoose': patch
'@graphql-mesh/mysql': patch
'@graphql-mesh/neo4j': patch
'@graphql-mesh/new-openapi': patch
'@graphql-mesh/odata': patch
'@graphql-mesh/openapi': patch
'@graphql-mesh/postgraphile': patch
'@graphql-mesh/raml': patch
'@graphql-mesh/soap': patch
'@graphql-mesh/thrift': patch
'@graphql-mesh/tuql': patch
'json-machete': patch
'@omnigraph/json-schema': patch
'@omnigraph/openapi': patch
'@omnigraph/raml': patch
'@graphql-mesh/merger-bare': patch
'@graphql-mesh/merger-federation': patch
'@graphql-mesh/merger-stitching': patch
'@graphql-mesh/runtime': patch
'@graphql-mesh/store': patch
'@graphql-mesh/string-interpolation': patch
'@graphql-mesh/transform-cache': patch
'@graphql-mesh/transform-encapsulate': patch
'@graphql-mesh/transform-extend': patch
'@graphql-mesh/transform-federation': patch
'@graphql-mesh/transform-filter-schema': patch
'@graphql-mesh/transform-hoist-field': patch
'@graphql-mesh/transform-mock': patch
'@graphql-mesh/transform-naming-convention': patch
'@graphql-mesh/transform-prefix': patch
'@graphql-mesh/transform-prune': patch
'@graphql-mesh/transform-rate-limit': patch
'@graphql-mesh/transform-rename': patch
'@graphql-mesh/transform-replace-field': patch
'@graphql-mesh/transform-resolvers-composition': patch
'@graphql-mesh/transform-snapshot': patch
'@graphql-mesh/transform-type-merging': patch
'@graphql-mesh/types': patch
'@graphql-mesh/urql-exchange': patch
'@graphql-mesh/utils': patch
---

Bump all packages
4 changes: 2 additions & 2 deletions examples/openapi-jira/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
"@graphql-mesh/cli": "0.67.5",
"@graphql-mesh/new-openapi": "0.4.7",
"@graphql-mesh/cli": "0.68.0",
"@graphql-mesh/new-openapi": "0.4.9",
"graphql": "16.3.0"
}
}
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"param-case": "3.0.4",
"@envelop/core": "2.3.1",
"tslib": "^2.3.1",
"fetchache": "^0.1.1",
"fetchache": "0.1.2",
"pascal-case": "3.1.2",
"camel-case": "4.1.2"
},
Expand Down
8 changes: 3 additions & 5 deletions packages/cross-helpers/browser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
module.exports = {
fs: {
promises: {}
},
path: require('path-browserify'),
module.exports.fs = {
promises: {}
};
module.exports.path = require('path-browserify');
6 changes: 2 additions & 4 deletions packages/cross-helpers/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
module.exports = {
fs: require('fs'),
path: require('path'),
}
module.exports.fs = require('fs');
module.exports.path = require('path');
6 changes: 2 additions & 4 deletions packages/cross-helpers/react-native.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
module.exports = {
fs: require('react-native-fs'),
path: require('react-native-path'),
};
module.exports.fs = require('react-native-fs');
module.exports.path = require('react-native-path');

1 comment on commit 7856f92

@vercel
Copy link

@vercel vercel bot commented on 7856f92 Apr 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.