Skip to content

Commit 3c1c01c

Browse files
authored
Merge pull request #12 from tenex-engineering/develop
v0.10.0-alpha
2 parents 173c4c8 + f6a6d70 commit 3c1c01c

File tree

4 files changed

+44
-35
lines changed

4 files changed

+44
-35
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile
3434

35+
- run: npm run ci
36+
37+
- run: npm pck delete scripts
38+
39+
- run: npm pck delete packageManager
40+
3541
- run: npm publish --provenance --access public
3642
env:
3743
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# graphql-x
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- 5353d99: fix
8+
39
## 0.9.0
410

511
### Minor Changes

package.json

Lines changed: 29 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,55 @@
11
{
2+
"scripts": {
3+
"ci": "npm run check-lint && npm run build && npm run check-exports && npm run test && npm run check-format && npm run check-spelling",
4+
"dev": "concurrently --names=\"build,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build -- --noEmit\" \"npm run watch:test\"",
5+
"build": "tsc",
6+
"lint": "eslint ./ --fix",
7+
"format": "prettier --write ./",
8+
"check-lint": "eslint ./",
9+
"check-format": "prettier --check .",
10+
"check-exports": "attw --pack ./ --ignore-rules=cjs-resolves-to-esm",
11+
"check-spelling": "cspell **",
12+
"test": "vitest run",
13+
"watch:build": "tsc --watch --preserveWatchOutput",
14+
"watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false"
15+
},
216
"name": "@txe/graphql-x",
3-
"version": "0.9.0",
17+
"version": "0.10.0",
418
"description": "GraphQL eXpansion",
5-
"keywords": [
6-
"graphql",
7-
"expansion"
8-
],
19+
"license": "MIT",
20+
"author": "Chabib N. R. <[email protected]> (https://tenex.engineering)",
921
"homepage": "https://github.com/tenex-engineering/graphql-x#readme",
1022
"bugs": {
1123
"url": "https://github.com/tenex-engineering/graphql-x/issues"
1224
},
13-
"author": "Chabib N. R. <[email protected]> (https://tenex.engineering)",
1425
"repository": {
1526
"type": "git",
1627
"url": "git+https://github.com/tenex-engineering/graphql-x.git"
1728
},
18-
"license": "MIT",
29+
"keywords": [
30+
"graphql",
31+
"expansion"
32+
],
1933
"type": "module",
20-
"packageManager": "[email protected]",
34+
"main": "dist/index.js",
35+
"bin": {
36+
"graphql-x": "bin/graphql-x"
37+
},
2138
"files": [
2239
"dist/",
2340
"!dist/testing/",
2441
"!dist/types/",
2542
"!**/*.spec.*"
2643
],
27-
"main": "./dist/index.js",
28-
"exports": "./dist/index.js",
29-
"types": "./dist/index.d.ts",
30-
"bin": {
31-
"graphql-x": "bin/graphql-x"
32-
},
3344
"imports": {
34-
"#app/*": "./dist/*"
35-
},
36-
"scripts": {
37-
"prepublishOnly": "npm run ci",
38-
"ci": "npm run check-lint && npm run build && npm run check-exports && npm run test && npm run check-format && npm run check-spelling",
39-
"dev": "concurrently --names=\"build,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build -- --noEmit\" \"npm run watch:test\"",
40-
"build": "tsc",
41-
"lint": "eslint ./ --fix",
42-
"format": "prettier --write ./",
43-
"check-lint": "eslint ./",
44-
"check-format": "prettier --check .",
45-
"check-exports": "attw --pack ./ --ignore-rules=cjs-resolves-to-esm",
46-
"check-spelling": "cspell **",
47-
"test": "vitest run",
48-
"watch:build": "tsc --watch --preserveWatchOutput",
49-
"watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false"
45+
"#app/*": "dist/*"
5046
},
47+
"packageManager": "[email protected]",
5148
"dependencies": {
5249
"@parcel/watcher": "^2.5.0",
5350
"debounce": "^2.2.0",
54-
"graphql": "^16.9.0"
51+
"graphql": "^16.9.0",
52+
"prettier": "^3.3.3"
5553
},
5654
"devDependencies": {
5755
"@arethetypeswrong/cli": "0.17.0",
@@ -70,7 +68,6 @@
7068
"eslint-plugin-import": "^2.31.0",
7169
"eslint-plugin-unicorn": "^56.0.0",
7270
"globals": "^15.12.0",
73-
"prettier": "^3.3.3",
7471
"typescript": "^5.6.3",
7572
"typescript-eslint": "^8.14.0",
7673
"vite": "^5.4.11",

pnpm-lock.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)