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

Integrate arethetypeswrong #184

Merged
merged 4 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
13 changes: 2 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,8 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm run build

- name: Generate
run: pnpm run generate

- name: Lint
run: pnpm run format

- name: Test
run: pnpm run test
- name: Run CI
run: pnpm run all

- name: Check changed files
id: check_changed_files
Expand Down
1 change: 1 addition & 0 deletions cspell.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"Timo",
"Vindaloo",
"Weizenbaum's",
"attw",
"backoffs",
"bufbuild",
"codegen",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
"generate": "turbo run generate",
"test": "turbo run test",
"format": "pnpm run format:root && turbo run format",
"attw": "turbo run attw",
"check:spelling": "cspell \"**\" --gitignore",
"all": "turbo run build generate format test",
"all": "turbo run build generate format attw test",
"update-all": "pnpm update --recursive --latest",
"format:root": "pnpm run check:spelling && prettier \"*.js\" \"*.ts\" \"README.md\" --write --no-error-on-unmatched-pattern"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/connect-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
"module": "./dist/index.js",
timostamm marked this conversation as resolved.
Show resolved Hide resolved
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
Expand All @@ -27,12 +25,14 @@
"clean": "rm -rf dist",
"generate": "buf generate --path eliza.proto",
"test": "jest",
"format": "prettier . --write --ignore-path ./.eslintignore && eslint . --fix && license-header"
"format": "prettier . --write --ignore-path ./.eslintignore && eslint . --fix && license-header",
"attw": "attw --pack"
},
"dependencies": {
"stable-hash": "^0.0.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.11.0",
"@bufbuild/buf": "1.26.1",
"@bufbuild/jest-environment-jsdom": "^0.1.1",
"@bufbuild/protobuf": "^1.3.1",
Expand Down
160 changes: 159 additions & 1 deletion pnpm-lock.yaml

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

3 changes: 3 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"dependsOn": ["generate"],
"cache": false
},
"attw": {
"dependsOn": ["format"]
smaye81 marked this conversation as resolved.
Show resolved Hide resolved
},
"format": {
"dependsOn": ["generate"]
}
Expand Down