Skip to content

Commit

Permalink
fixed node issues and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aexol committed Oct 19, 2023
1 parent 8c46eba commit be5d92a
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 44 deletions.
4 changes: 2 additions & 2 deletions adapters/graphql-yoga/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aexol/axolotl-graphql-yoga",
"version": "0.0.1",
"version": "0.0.3",
"private": false,
"main": "./lib/index.js",
"author": "Aexol, Artur Czemiel",
Expand All @@ -13,6 +13,6 @@
"dependencies": {
"graphql": "^16.8.1",
"graphql-yoga": "^4.0.5",
"stucco-js": "^0.10.18"
"@aexol/axolotl-core": "^0.0.3"
}
}
7 changes: 4 additions & 3 deletions adapters/stucco/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aexol/axolotl-stucco",
"version": "0.0.1",
"version": "0.0.3",
"private": false,
"main": "./lib/index.js",
"author": "Aexol, Artur Czemiel",
Expand All @@ -11,6 +11,7 @@
"lint": "tspc && eslint \"./src/**/*.{ts,js}\" --quiet --fix"
},
"dependencies": {
"stucco-js": "^0.10.18"
"stucco-js": "^0.10.18",
"@aexol/axolotl-core": "^0.0.3"
}
}
}
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "docs",
"version": "0.0.1",
"version": "0.0.3",
"description": "Axolotl docs",
"private":true,
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
Expand Down
14 changes: 8 additions & 6 deletions examples/beerpub-yoga/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "beerpub-yoga",
"version": "0.0.0",
"version": "0.0.2",
"description": "Automatically generated by graphql-editor-cli",
"main": "lib/index.js",
"type": "module",
"private":true,
"private": true,
"scripts": {
"start": "node lib/index.js",
"build": "tspc",
Expand All @@ -14,16 +14,18 @@
"author": "GraphQL Editor Centaur Generator",
"license": "ISC",
"dependencies": {
"@aexol/axolotl-cli": "^0.0.1",
"@aexol/axolotl-core": "^0.0.1",
"@aexol/axolotl-stucco": "^0.0.1",
"@aexol/axolotl-core": "^0.0.3",
"@aexol/axolotl-stucco": "^0.0.3",
"graphql": "^16.8.1",
"graphql-yoga": "^4.0.5",
"node-fetch": "^3.2.10",
"stucco-js": "^0.10.17",
"ws": "^8.12.0"
},
"devDependencies": {
"@aexol/axolotl": "^0.0.3"
},
"workspaces": [
"packages/core"
]
}
}
14 changes: 8 additions & 6 deletions examples/beerpub/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "beerpub",
"version": "0.0.0",
"private":true,
"version": "0.0.2",
"private": true,
"description": "Automatically generated by graphql-editor-cli",
"main": "lib/index.js",
"type": "module",
Expand All @@ -17,11 +17,13 @@
"node-fetch": "^3.2.10",
"stucco-js": "^0.10.17",
"ws": "^8.12.0",
"@aexol/axolotl-core": "^0.0.1",
"@aexol/axolotl-cli": "^0.0.1",
"@aexol/axolotl-stucco": "^0.0.1"
"@aexol/axolotl-core": "^0.0.3",
"@aexol/axolotl-stucco": "^0.0.3"
},
"devDependencies": {
"@aexol/axolotl": "^0.0.3"
},
"workspaces": [
"packages/core"
]
}
}
47 changes: 28 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/cli/create/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from 'fs';
import * as path from 'path';
import { execSync } from 'child_process';
import fs from 'node:fs';
import * as path from 'node:path';
import { execSync } from 'node:child_process';
import chalk, { Color } from 'chalk';

import { BASE_REPOSITORY, MESSAGE_BRAKE } from './consts.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aexol/axolotl",
"version": "0.0.1",
"version": "0.0.3",
"private": false,
"main": "./lib/index.js",
"author": "Aexol, Artur Czemiel",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aexol/axolotl-core",
"version": "0.0.1",
"version": "0.0.3",
"private": false,
"main": "./lib/index.js",
"author": "Aexol, Artur Czemiel",
Expand All @@ -13,4 +13,4 @@
"dependencies": {
"graphql-js-tree": "^1.0.6"
}
}
}

0 comments on commit be5d92a

Please sign in to comment.