simple-graphql
Advanced tools
Comparing version 4.1.10 to 4.1.11
@@ -8,4 +8,8 @@ "use strict"; | ||
exports.default = (plugins) => { | ||
return [...plugin_1.default, ...plugins] | ||
.sort((p1, p2) => { | ||
return [ | ||
...plugin_1.default.map((plugin) => { | ||
return Object.assign({}, plugin); | ||
}), | ||
...plugins | ||
].sort((p1, p2) => { | ||
const p1n = p1.priority || 0; | ||
@@ -22,7 +26,4 @@ const p2n = p2.priority || 0; | ||
} | ||
}) | ||
.map((plugin) => { | ||
return Object.assign({}, plugin); | ||
}); | ||
}; | ||
//# sourceMappingURL=buildPlugins.js.map |
{ | ||
"name": "simple-graphql", | ||
"version": "4.1.10", | ||
"version": "4.1.11", | ||
"description": "The simple way to generates GraphQL schemas and Sequelize models from your models definition.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
327500
4855