Skip to content

Commit 7bef689

Browse files
authored
chore: upgrade dependencies (#433)
Upgrade dependencies. Adds `chokidar` compatibility layer to be able to watch a pattern.
1 parent c8e529f commit 7bef689

52 files changed

Lines changed: 1804 additions & 4660 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/create-react-server.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,17 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
include:
47+
runtime: [node, bun, deno]
48+
pkg_mgr: [npm, pnpm, bun]
49+
template: [blank, blank-ts, get-started, get-started-ts, router, nextjs]
50+
exclude:
4851
- runtime: node
49-
pkg_mgr: npm
50-
- runtime: node
51-
pkg_mgr: pnpm
52-
- runtime: bun
53-
pkg_mgr: npm
54-
- runtime: bun
55-
pkg_mgr: pnpm
56-
- runtime: bun
5752
pkg_mgr: bun
5853
- runtime: deno
59-
pkg_mgr: npm
60-
- runtime: deno
61-
pkg_mgr: pnpm
54+
pkg_mgr: bun
6255
fail-fast: false
6356

64-
name: "Test create ${{ matrix.runtime }}/${{ matrix.pkg_mgr }} 🧪"
57+
name: "Test create ${{ matrix.runtime }}/${{ matrix.pkg_mgr }}/${{ matrix.template }} 🧪"
6558
steps:
6659
- name: Checkout
6760
uses: actions/checkout@v4
@@ -70,15 +63,15 @@ jobs:
7063
with:
7164
node_version: 20
7265

73-
- name: Test create-react-server (${{ matrix.runtime }}/${{ matrix.pkg_mgr }})
66+
- name: Test create-react-server (${{ matrix.runtime }}/${{ matrix.pkg_mgr }}/${{ matrix.template }})
7467
working-directory: ./packages/create-react-server/test
75-
run: PKG_MGR=${{ matrix.pkg_mgr }} pnpm test:${{ matrix.runtime }}
68+
run: PKG_MGR=${{ matrix.pkg_mgr }} TEMPLATE=${{ matrix.template }} pnpm test:${{ matrix.runtime }}
7669

7770
- name: Upload test results
7871
if: always()
7972
uses: actions/upload-artifact@v4
8073
with:
81-
name: test-results-create-${{ matrix.runtime }}-${{ matrix.pkg_mgr }}
74+
name: test-results-create-${{ matrix.runtime }}-${{ matrix.pkg_mgr }}-${{ matrix.template }}
8275
path: packages/create-react-server/test/test-results/junit.xml
8376
if-no-files-found: ignore
8477
retention-days: 7
@@ -89,7 +82,7 @@ jobs:
8982
with:
9083
token: ${{ secrets.CODECOV_TOKEN }}
9184
files: packages/create-react-server/test/test-results/junit.xml
92-
flags: create-${{ matrix.runtime }}-${{ matrix.pkg_mgr }}
85+
flags: create-${{ matrix.runtime }}-${{ matrix.pkg_mgr }}-${{ matrix.template }}
9386
report_type: test_results
9487

9588
test-results:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ examples/*/dist
3232
.eslintcache
3333
.npm-cache
3434
junit.xml
35-
test-results
35+
test-results
36+
.cli-eval-*

examples/nestjs/.gitignore

Lines changed: 0 additions & 56 deletions
This file was deleted.

examples/nestjs/README.md

Lines changed: 0 additions & 73 deletions
This file was deleted.

examples/nestjs/nest-cli.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

examples/nestjs/package.json

Lines changed: 0 additions & 74 deletions
This file was deleted.

examples/nestjs/react-server.config.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/nestjs/src/app.controller.spec.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

examples/nestjs/src/app.controller.ts

Lines changed: 0 additions & 13 deletions
This file was deleted.

examples/nestjs/src/app.module.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)