Skip to content

Commit

Permalink
Merge branch 'main' into fix/tsup-vitest/no-build
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli authored Nov 5, 2023
2 parents faba672 + 98e4aa4 commit 4e336d6
Show file tree
Hide file tree
Showing 26 changed files with 2,154 additions and 2,447 deletions.
15 changes: 15 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":semanticCommitTypeAll(ci)"],
"labels": ["renovate"],
"reviewersFromCodeOwners": true,
"nvm": {
"fileMatch": ["(^|/)\\.nvmrc$"],
"versioning": "node",
"pinDigests": false
},
"github-actions": {
"fileMatch": ["^(workflow-templates|\\.(?:github|gitea|forgejo)/workflows)/[^/]+\\.ya?ml$", "(^|/)action\\.ya?ml$"]
},
"baseBranches": ["main"]
}
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
- main
pull_request:
types: [opened, synchronize, reopened]

env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -17,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint', 'lint:attw', 'lint:pub', 'test', 'test:tsd', 'type:check']
command: ['lint', 'lint:attw', 'lint:pub', 'test', 'test:tsd', 'type:check', 'build']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.1
version: 8.10.2
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
quality:
Expand All @@ -15,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.1
version: 8.10.2
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.1
version: 8.10.2
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.1
version: 8.10.2
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.16
18
6 changes: 3 additions & 3 deletions configs/eslint-config-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"lint": "eslint ."
},
"dependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vitest": "0.3.1"
},
"peerDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions configs/eslint-config-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
},
"dependencies": {
"@suspensive/eslint-config-js": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^4.2.1"
"eslint-plugin-prettier": "^5.0.1"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
Expand Down
4 changes: 2 additions & 2 deletions configs/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"dependencies": {
"@suspensive/eslint-config-js": "workspace:*",
"@suspensive/eslint-config-ts": "workspace:*",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0"
},
"peerDependencies": {
Expand Down
5 changes: 5 additions & 0 deletions configs/eslint-config/react.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ module.exports = {
'react/prop-types': 'off',
'react/no-unescaped-entities': 'off',
},
settings: {
react: {
version: 'detect',
},
},
}
2 changes: 1 addition & 1 deletion configs/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type:check": "tsc --noEmit"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react": "^18.2.34",
"react": "^18.2.0"
},
"peerDependencies": {
Expand Down
18 changes: 9 additions & 9 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@
},
"dependencies": {
"@vercel/analytics": "^1.1.1",
"next": "13.5.4",
"next": "14.0.1",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"@types/node": "^20.8.10",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"tailwindcss": "^3",
"typescript": "^5"
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
}
}
39 changes: 20 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "https://github.com/suspensive/react.git"
},
"license": "MIT",
"packageManager": "pnpm@8.5.1",
"packageManager": "pnpm@8.10.2",
"type": "module",
"workspaces": [
"configs/*",
Expand Down Expand Up @@ -48,37 +48,38 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.12.2",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@suspensive/eslint-config": "workspace:*",
"@suspensive/eslint-config-js": "workspace:*",
"@suspensive/eslint-config-ts": "workspace:*",
"@suspensive/tsconfig": "workspace:*",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.4",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"ms": "^3.0.0-canary.1",
"lint-staged": "^13.3.0",
"ms": "3.0.0-canary.1",
"packlint": "^0.2.4",
"prettier": "^2.8.8",
"publint": "^0.2.2",
"rimraf": "^5.0.1",
"tsup": "^7.1.0",
"prettier": "^3.0.3",
"publint": "^0.2.5",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"turbo": "latest",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"volta": {
"node": "18.16.1"
"node": "18.16.1",
"pnpm": "8.10.2"
}
}
6 changes: 6 additions & 0 deletions packages/react-await/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @suspensive/react-await

## 0.0.5

### Patch Changes

- 38c1247: chore: update project's dependencies

## 0.0.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/react-await/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@suspensive/react-await",
"version": "0.0.4",
"version": "0.0.5",
"description": "Useful interfaces for React Suspense",
"keywords": [
"suspensive",
Expand Down Expand Up @@ -64,9 +64,9 @@
"@suspensive/test-utils": "workspace:*",
"@suspensive/tsup": "workspace:*",
"@suspensive/vitest": "workspace:*",
"@types/node": "^18.16.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/node": "^18.18.8",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/use-sync-external-store": "^0.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @suspensive/react-query

## 1.18.3

### Patch Changes

- 38c1247: chore: update project's dependencies
- Updated dependencies [38c1247]
- @suspensive/react@1.18.3

## 1.18.2

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@suspensive/react-query",
"version": "1.18.2",
"version": "1.18.3",
"description": "Useful helpers for @tanstack/react-query with suspense",
"keywords": [
"suspensive",
Expand Down Expand Up @@ -62,16 +62,16 @@
"@suspensive/react": "workspace:*",
"@suspensive/tsup": "workspace:*",
"@suspensive/vitest": "workspace:*",
"@tanstack/react-query": "^4.29.5",
"@types/node": "^18.16.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@tanstack/react-query": "^4.36.1",
"@types/node": "^18.18.8",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsd": "^0.28.1"
},
"peerDependencies": {
"@suspensive/react": "workspace:^1.18.2",
"@suspensive/react": "workspace:^1.18.3",
"@tanstack/react-query": "^4",
"react": "^16.8 || ^17 || ^18"
},
Expand Down
Loading

0 comments on commit 4e336d6

Please sign in to comment.