diff --git a/.DS_Store b/.DS_Store index 21b728f..35d8d0a 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/adapters/apollo-server/package-lock.json b/adapters/apollo-server/package-lock.json index eb93716..4e0a0d2 100644 --- a/adapters/apollo-server/package-lock.json +++ b/adapters/apollo-server/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aexol/axolotl-apollo-server", - "version": "0.3.9", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@aexol/axolotl-apollo-server", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-core": "^0.0.8", "@apollo/server": "^4.9.4", diff --git a/adapters/apollo-server/package.json b/adapters/apollo-server/package.json index 647b57d..0cb1cb3 100644 --- a/adapters/apollo-server/package.json +++ b/adapters/apollo-server/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl-apollo-server", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/adapters/graphql-yoga/package.json b/adapters/graphql-yoga/package.json index a0b982d..c009df8 100644 --- a/adapters/graphql-yoga/package.json +++ b/adapters/graphql-yoga/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl-graphql-yoga", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/adapters/stucco/package.json b/adapters/stucco/package.json index 67ff505..6a5fe4b 100644 --- a/adapters/stucco/package.json +++ b/adapters/stucco/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl-stucco", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/examples/beerpub-apollo-server/package.json b/examples/beerpub-apollo-server/package.json index c63733b..34200af 100644 --- a/examples/beerpub-apollo-server/package.json +++ b/examples/beerpub-apollo-server/package.json @@ -1,6 +1,6 @@ { "name": "beerpub-apollo-server", - "version": "0.3.9", + "version": "0.4.0", "description": "Automatically generated by graphql-editor-cli", "main": "lib/index.js", "type": "module", diff --git a/examples/beerpub-yoga-federated/package.json b/examples/beerpub-yoga-federated/package.json index 7bfbc13..19bace5 100644 --- a/examples/beerpub-yoga-federated/package.json +++ b/examples/beerpub-yoga-federated/package.json @@ -1,6 +1,6 @@ { "name": "beerpub-yoga-federated", - "version": "0.4.9", + "version": "0.5.0", "description": "Automatically generated by graphql-editor-cli", "main": "lib/index.js", "type": "module", diff --git a/examples/beerpub-yoga/package.json b/examples/beerpub-yoga/package.json index c77827d..0335fcd 100644 --- a/examples/beerpub-yoga/package.json +++ b/examples/beerpub-yoga/package.json @@ -1,6 +1,6 @@ { "name": "beerpub-yoga", - "version": "0.4.9", + "version": "0.5.0", "description": "Automatically generated by graphql-editor-cli", "main": "lib/index.js", "type": "module", diff --git a/modularium/cli/add/utils.ts b/modularium/cli/add/utils.ts index db68ace..2ccad39 100644 --- a/modularium/cli/add/utils.ts +++ b/modularium/cli/add/utils.ts @@ -45,6 +45,8 @@ export const addModuleAction = async ({ moduleKey }: { moduleKey: string }) => { } }; +const TEMP_REPO_NAME = 'repo1234'; + const runCommands = async (source: string, destination: string) => { try { const system = checkSystem({ node: '16.20' }); @@ -58,19 +60,18 @@ const runCommands = async (source: string, destination: string) => { }, ]); fs.mkdirSync(destination, { recursive: true }); - runCommand(`cd ${destination}`); - const clone = runCommand(`git clone -n --depth=1 --filter=tree:0 ${BASE_REPOSITORY} repo`); + const clone = runCommand(`git clone -n --depth=1 --filter=tree:0 ${BASE_REPOSITORY} ${TEMP_REPO_NAME}`); if (!clone) return { error: "can't clone repository" }; const checkout = runCommand( - `cd repo && git config core.sparseCheckout true && git sparse-checkout set ${source} && git checkout && git config core.sparseCheckout false`, + `cd ${TEMP_REPO_NAME} && git config core.sparseCheckout true && git sparse-checkout set ${source} && git checkout && git config core.sparseCheckout false`, ); - if (!checkout) return { error: "can't clone repository" }; + if (!checkout) return { error: "can't checkout repository" }; let move; if (system.platform === 'win32') { - move = runCommand(`cd .. && move repo/${source} ./ && del repo`); - } else move = runCommand(`cd .. && mv repo/${source} ./ && rm -rf repo`); - if (!move) return { error: "can't clone repository" }; + move = runCommand(`cd .. && move ${TEMP_REPO_NAME}/${source} ${destination} && del ${TEMP_REPO_NAME}`); + } else move = runCommand(`cd .. && mv ${TEMP_REPO_NAME}/${source} ${destination} && rm -rf ${TEMP_REPO_NAME}`); + if (!move) return { error: "can't move repository" }; // deps should be installed from docs. Later one we can install deps here somehow return { success: true }; } catch (error) { diff --git a/modularium/cli/package.json b/modularium/cli/package.json index 89b7192..d112fcc 100644 --- a/modularium/cli/package.json +++ b/modularium/cli/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/modularium", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/modularium/root/package.json b/modularium/root/package.json index d34328d..77fb9f5 100644 --- a/modularium/root/package.json +++ b/modularium/root/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/modularium-playground", - "version": "0.3.9", + "version": "0.4.0", "description": "Axolotl modularium", "main": "lib/index.js", "type": "module", diff --git a/package-lock.json b/package-lock.json index 5a902e3..b09ebf6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -49,7 +49,7 @@ }, "adapters/apollo-server": { "name": "@aexol/axolotl-apollo-server", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-core": "^0.3.9", "@apollo/server": "^4.9.4", @@ -60,6 +60,35 @@ "graphql": "^16.0.0 || ^17.0.0" } }, + "adapters/apollo-server/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "adapters/apollo-server/node_modules/@aexol/axolotl-core/node_modules/@graphql-tools/utils": { + "version": "10.3.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.3.2.tgz", + "integrity": "sha512-iaqOHS4f90KNADBHqVsRBjKpM6iSvsUg1q5GhWMK03loYLaDzftrEwcsl0OkSSnRhJvAsT7q4q3r3YzRoV0v1g==", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "cross-inspect": "1.0.0", + "dset": "^3.1.2", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, "adapters/apollo-server/node_modules/@apollo/server": { "version": "4.9.4", "license": "MIT", @@ -133,6 +162,14 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, + "adapters/apollo-server/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, "adapters/apollo-server/node_modules/lru-cache": { "version": "7.18.3", "license": "ISC", @@ -171,7 +208,7 @@ }, "adapters/graphql-yoga": { "name": "@aexol/axolotl-graphql-yoga", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-core": "^0.3.9", "@graphql-tools/utils": "^10.3.2", @@ -181,16 +218,56 @@ "graphql": "^16.0.0 || ^17.0.0" } }, + "adapters/graphql-yoga/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "adapters/graphql-yoga/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, "adapters/stucco": { "name": "@aexol/axolotl-stucco", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-core": "^0.3.9", "stucco-js": "^0.10.19" } }, - "examples/beerpub-apollo-server": { + "adapters/stucco/node_modules/@aexol/axolotl-core": { "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "adapters/stucco/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-apollo-server": { + "version": "0.4.0", "license": "ISC", "dependencies": { "@aexol/axolotl-apollo-server": "^0.3.9", @@ -214,6 +291,83 @@ "typescript-transform-paths": "^3.4.6" } }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl/-/axolotl-0.3.9.tgz", + "integrity": "sha512-7cJ9LhGIirflWwAV/hzvP4t3EXjVjrLMlERWtHt/5gisIaOimEthTMRhiBY/2+w3VZSY2oEBYekZHgAojDGOug==", + "dev": true, + "dependencies": { + "@aexol/axolotl-config": "^0.3.9", + "@aexol/axolotl-core": "^0.3.9", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "commander": "^11.0.0", + "graphql-js-tree": "^1.0.6" + }, + "bin": { + "axolotl": "lib/index.js" + } + }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl-apollo-server": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-apollo-server/-/axolotl-apollo-server-0.3.9.tgz", + "integrity": "sha512-rzrgexaX8F1GAXYHP85EdcmBWOxEFcQ2vSa5sGA4VIbb84Hv0VcqZFjVeH4d4vYC5CAauugj22w92nISGJJdhg==", + "dependencies": { + "@aexol/axolotl-core": "^0.3.9", + "@apollo/server": "^4.9.4", + "@graphql-tools/schema": "^9.0.19", + "@graphql-tools/utils": "^9.2.1" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dev": true, + "dependencies": { + "config-maker": "^0.0.5" + } + }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl-core/node_modules/@graphql-tools/utils": { + "version": "10.3.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.3.2.tgz", + "integrity": "sha512-iaqOHS4f90KNADBHqVsRBjKpM6iSvsUg1q5GhWMK03loYLaDzftrEwcsl0OkSSnRhJvAsT7q4q3r3YzRoV0v1g==", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", + "cross-inspect": "1.0.0", + "dset": "^3.1.2", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-apollo-server/node_modules/@aexol/axolotl-core/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, "examples/beerpub-apollo-server/node_modules/@apollo/server": { "version": "4.9.4", "license": "MIT", @@ -495,6 +649,18 @@ "balanced-match": "^1.0.0" } }, + "examples/beerpub-apollo-server/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "examples/beerpub-apollo-server/node_modules/lru-cache": { "version": "7.18.3", "license": "ISC", @@ -528,7 +694,7 @@ } }, "examples/beerpub-yoga": { - "version": "0.4.9", + "version": "0.5.0", "license": "ISC", "dependencies": { "@aexol/axolotl-core": "^0.3.9", @@ -554,7 +720,7 @@ } }, "examples/beerpub-yoga-federated": { - "version": "0.4.9", + "version": "0.5.0", "license": "ISC", "dependencies": { "@aexol/axolotl-core": "^0.3.9", @@ -579,9 +745,151 @@ "typescript-transform-paths": "^3.4.6" } }, + "examples/beerpub-yoga-federated/node_modules/@aexol/axolotl": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl/-/axolotl-0.3.9.tgz", + "integrity": "sha512-7cJ9LhGIirflWwAV/hzvP4t3EXjVjrLMlERWtHt/5gisIaOimEthTMRhiBY/2+w3VZSY2oEBYekZHgAojDGOug==", + "dev": true, + "dependencies": { + "@aexol/axolotl-config": "^0.3.9", + "@aexol/axolotl-core": "^0.3.9", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "commander": "^11.0.0", + "graphql-js-tree": "^1.0.6" + }, + "bin": { + "axolotl": "lib/index.js" + } + }, + "examples/beerpub-yoga-federated/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dev": true, + "dependencies": { + "config-maker": "^0.0.5" + } + }, + "examples/beerpub-yoga-federated/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga-federated/node_modules/@aexol/axolotl-core/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga-federated/node_modules/@aexol/axolotl-graphql-yoga": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-graphql-yoga/-/axolotl-graphql-yoga-0.3.9.tgz", + "integrity": "sha512-+Xbe8ZKoOYzIX+qpUon+VVIpjMKiWb8uXJWKfLjOFuWEzD5F2og6dK67r/mhMWezp8hwwTOtSDfRPhwrUFwDXA==", + "dependencies": { + "@aexol/axolotl-core": "^0.3.9", + "@graphql-tools/utils": "^10.3.2", + "graphql-yoga": "^4.0.5" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga-federated/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "examples/beerpub-yoga/node_modules/@aexol/axolotl": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl/-/axolotl-0.3.9.tgz", + "integrity": "sha512-7cJ9LhGIirflWwAV/hzvP4t3EXjVjrLMlERWtHt/5gisIaOimEthTMRhiBY/2+w3VZSY2oEBYekZHgAojDGOug==", + "dev": true, + "dependencies": { + "@aexol/axolotl-config": "^0.3.9", + "@aexol/axolotl-core": "^0.3.9", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "commander": "^11.0.0", + "graphql-js-tree": "^1.0.6" + }, + "bin": { + "axolotl": "lib/index.js" + } + }, + "examples/beerpub-yoga/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dev": true, + "dependencies": { + "config-maker": "^0.0.5" + } + }, + "examples/beerpub-yoga/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga/node_modules/@aexol/axolotl-core/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga/node_modules/@aexol/axolotl-graphql-yoga": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-graphql-yoga/-/axolotl-graphql-yoga-0.3.9.tgz", + "integrity": "sha512-+Xbe8ZKoOYzIX+qpUon+VVIpjMKiWb8uXJWKfLjOFuWEzD5F2og6dK67r/mhMWezp8hwwTOtSDfRPhwrUFwDXA==", + "dependencies": { + "@aexol/axolotl-core": "^0.3.9", + "@graphql-tools/utils": "^10.3.2", + "graphql-yoga": "^4.0.5" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "examples/beerpub-yoga/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "modularium/cli": { "name": "@aexol/modularium", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-config": "^0.3.9", "chalk": "^5.3.0", @@ -591,6 +899,14 @@ "modularium": "lib/index.js" } }, + "modularium/cli/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dependencies": { + "config-maker": "^0.0.5" + } + }, "modularium/cli/node_modules/chalk": { "version": "5.3.0", "license": "MIT", @@ -603,7 +919,7 @@ }, "modularium/root": { "name": "@aexol/modularium-playground", - "version": "0.3.9", + "version": "0.4.0", "license": "ISC", "dependencies": { "@aexol/axolotl-core": "^0.3.9", @@ -633,6 +949,77 @@ "typescript-transform-paths": "^3.4.6" } }, + "modularium/root/node_modules/@aexol/axolotl": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl/-/axolotl-0.3.9.tgz", + "integrity": "sha512-7cJ9LhGIirflWwAV/hzvP4t3EXjVjrLMlERWtHt/5gisIaOimEthTMRhiBY/2+w3VZSY2oEBYekZHgAojDGOug==", + "dev": true, + "dependencies": { + "@aexol/axolotl-config": "^0.3.9", + "@aexol/axolotl-core": "^0.3.9", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "commander": "^11.0.0", + "graphql-js-tree": "^1.0.6" + }, + "bin": { + "axolotl": "lib/index.js" + } + }, + "modularium/root/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dev": true, + "dependencies": { + "config-maker": "^0.0.5" + } + }, + "modularium/root/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "modularium/root/node_modules/@aexol/axolotl-core/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "modularium/root/node_modules/@aexol/axolotl-graphql-yoga": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-graphql-yoga/-/axolotl-graphql-yoga-0.3.9.tgz", + "integrity": "sha512-+Xbe8ZKoOYzIX+qpUon+VVIpjMKiWb8uXJWKfLjOFuWEzD5F2og6dK67r/mhMWezp8hwwTOtSDfRPhwrUFwDXA==", + "dependencies": { + "@aexol/axolotl-core": "^0.3.9", + "@graphql-tools/utils": "^10.3.2", + "graphql-yoga": "^4.0.5" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "modularium/root/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/@aashutoshrathi/word-wrap": { "version": "1.2.6", "dev": true, @@ -9852,7 +10239,7 @@ }, "packages/cli": { "name": "@aexol/axolotl", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@aexol/axolotl-config": "^0.3.9", "@aexol/axolotl-core": "^0.3.9", @@ -9865,6 +10252,34 @@ "axolotl": "lib/index.js" } }, + "packages/cli/node_modules/@aexol/axolotl-config": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-config/-/axolotl-config-0.3.9.tgz", + "integrity": "sha512-C1SK9vZO5xRp9OHvMtAUdreXhL9VXDz+9IhxZuLOyAwc7bKuvIOIpgeHxGx0UUhi8eBz6YAOjPgFqHG9TtvfJg==", + "dependencies": { + "config-maker": "^0.0.5" + } + }, + "packages/cli/node_modules/@aexol/axolotl-core": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@aexol/axolotl-core/-/axolotl-core-0.3.9.tgz", + "integrity": "sha512-HyrZ9BQLaPUaJd0ccEn5gK0d0OrYnXY81gRqp+uDuIU7NzYyvVIdOo1ocagGmZeHGpjiuhp8xbRuM+R5HAo8QA==", + "dependencies": { + "@graphql-tools/utils": "^10.3.2", + "graphql-js-tree": "^3.0.0" + }, + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, + "packages/cli/node_modules/@aexol/axolotl-core/node_modules/graphql-js-tree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/graphql-js-tree/-/graphql-js-tree-3.0.1.tgz", + "integrity": "sha512-3ziU303/75MruWU/gTXxZ+RS04FfCBSPOWzsI1zqOEs84krHAckCCXrbF8FhQ0JGcQv85uJf6fn2Nr07M6tgWA==", + "peerDependencies": { + "graphql": "^16.0.0 || ^17.0.0" + } + }, "packages/cli/node_modules/chalk": { "version": "5.3.0", "license": "MIT", @@ -9877,14 +10292,14 @@ }, "packages/config": { "name": "@aexol/axolotl-config", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "config-maker": "^0.0.5" } }, "packages/core": { "name": "@aexol/axolotl-core", - "version": "0.3.9", + "version": "0.4.0", "dependencies": { "@graphql-tools/utils": "^10.3.2", "graphql-js-tree": "^3.0.0" diff --git a/packages/cli/package.json b/packages/cli/package.json index be5a456..a847176 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/packages/config/package.json b/packages/config/package.json index b9db1df..bca6174 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl-config", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel", diff --git a/packages/core/package.json b/packages/core/package.json index 9f25ddd..76932de 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@aexol/axolotl-core", - "version": "0.3.9", + "version": "0.4.0", "private": false, "main": "./lib/index.js", "author": "Aexol, Artur Czemiel",