Skip to content

Commit

Permalink
Merge branch 'main' into react/feat/wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli authored Nov 5, 2023
2 parents cae241a + 98e4aa4 commit 95cb71e
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 20 deletions.
7 changes: 0 additions & 7 deletions .changeset/tender-turkeys-sniff.md

This file was deleted.

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"]
}
6 changes: 4 additions & 2 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,7 +19,7 @@ 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
Expand Down
6 changes: 6 additions & 0 deletions .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 Down
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
2 changes: 1 addition & 1 deletion 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
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
4 changes: 2 additions & 2 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 @@ -71,7 +71,7 @@
"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
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @suspensive/react

## 1.18.3

### Patch Changes

- 38c1247: chore: update project's dependencies

## 1.18.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@suspensive/react",
"version": "1.18.2",
"version": "1.18.3",
"description": "Useful interfaces for React Suspense",
"keywords": [
"suspensive",
Expand Down
14 changes: 7 additions & 7 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "build/**"] },
"build:watch": { "outputs": ["dist/**"] },
"npm:publish": { "dependsOn": ["^build"] },
"lint": { "cache": false },
"lint:attw": { "dependsOn": ["^build"], "cache": false },
"lint:pub": { "cache": false },
"test": { "dependsOn": ["^build"], "outputs": ["coverage/**"], "cache": false },
"lint": {},
"lint:attw": { "dependsOn": ["^build"] },
"lint:pub": {},
"test": { "dependsOn": ["^prepack"], "outputs": ["coverage/**"] },
"test:tsd": {},
"test:watch": { "cache": false },
"prepack": { "dependsOn": ["^prepack"], "cache": false },
"dev": { "dependsOn": ["^prepack"], "cache": false },
"test:watch": { "dependsOn": ["^prepack"], "outputs": ["coverage/**"] },
"prepack": { "dependsOn": ["^prepack"], "outputs": ["dist/**"] },
"dev": { "dependsOn": ["^prepack"] },
"type:check": { "dependsOn": ["^build"] }
},
"globalEnv": ["NODE_ENV"]
Expand Down

0 comments on commit 95cb71e

Please sign in to comment.