Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tooling #18

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 9 additions & 27 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,13 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Set Node.js 14.x
- name: Set Node.js 22.x
uses: actions/setup-node@main
with:
node-version: 14.x

- uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: pnpm-v5-ubuntu-latest-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: pnpm-v5-ubuntu-latest-
node-version: 22.x

- name: Install pnpm
run: npm i -g pnpm@6.17.0
run: corepack enable pnpm

- name: Install Dependencies
run: pnpm i
Expand All @@ -38,19 +32,13 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Set Node.js 14.x
- name: Set Node.js 22.x
uses: actions/setup-node@main
with:
node-version: 14.x

- uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: pnpm-v5-ubuntu-latest-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: pnpm-v5-ubuntu-latest-
node-version: 22.x

- name: Install pnpm
run: npm i -g pnpm@6.17.0
run: corepack enable pnpm

- name: Install Dependencies
run: pnpm i
Expand All @@ -63,19 +51,13 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Set Node.js 14.x
- name: Set Node.js 22.x
uses: actions/setup-node@main
with:
node-version: 14.x

- uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: pnpm-v5-ubuntu-latest-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: pnpm-v5-ubuntu-latest-
node-version: 22.x

- name: Install pnpm
run: npm i -g pnpm@6.17.0
run: corepack enable pnpm

- name: Install Dependencies
run: pnpm i
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,13 @@ jobs:
with:
fetch-depth: 0

- name: Setup Node.js 14.x
- name: Set Node.js 22.x
uses: actions/setup-node@main
with:
node-version: 14.x

- uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: pnpm-v5-ubuntu-latest-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: pnpm-v5-ubuntu-latest
node-version: 22.x

- name: Install pnpm
run: npm i -g pnpm@6.17.0
run: corepack enable pnpm

- name: Install Dependencies
run: pnpm i
Expand Down
1 change: 0 additions & 1 deletion fix-ts-autoimport.ts

This file was deleted.

19 changes: 6 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,25 @@
"private": true,
"repository": "https://github.com/Thinkmill/graphql-ts",
"license": "MIT",
"dependencies": {
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@manypkg/cli": "0.18.0",
"@preconstruct/cli": "^2.2.1",
"@types/decompress": "4.2.4",
"@manypkg/cli": "^0.23.0",
"@preconstruct/cli": "^2.8.10",
"@types/jest": "26.0.24",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-jest": "27.0.6",
"eslint": "^7.28.0",
"got": "11.8.2",
"jest": "27.0.6",
"node-fetch": "2.6.1",
"package-json": "7.0.0",
"prettier": "2.3.1",
"prettier-plugin-jsdoc": "0.3.23",
"typescript": "^4.3.5"
"typescript": "^5.7.3"
},
"scripts": {
"postinstall": "preconstruct dev && manypkg check",
Expand All @@ -42,10 +38,7 @@
"packages": [
"packages/*"
],
"exports": true,
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"exports": true
}
"exports": true
},
"manypkg": {
"defaultBranch": "main"
Expand Down
Loading
Loading