Skip to content

Commit 6197d5b

Browse files
authored
Merge pull request #14 from forge42dev/rr7
React Router v7
2 parents 37994f9 + 065509d commit 6197d5b

File tree

23 files changed

+5440
-8662
lines changed

23 files changed

+5440
-8662
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: 🚀 pkg-pr-new
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
12+
- run: corepack enable
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
cache: "npm"
17+
18+
- name: Install dependencies
19+
run: npm install
20+
21+
- name: Build
22+
run: npm run build
23+
24+
- run: npx pkg-pr-new publish

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99

1010
<img style="display: block; margin: 0 auto;" src="./assets/remix-cache.png" height="300px" align="middle" />
1111

12+
# Important information
13+
14+
This library is now a part of the React Router ecosystem and runs on top of React Router. It should be compatible with remix.run but if you're having issues version
15+
1.1.0 is the last version that will work with remix.run.
16+
17+
1218
remix-client-cache is a powerful and lightweight library made for Remix.run to cache your server loader data on the client using clientLoaders.
1319

1420
By default it uses the stale while revalidate strategy and hot swaps your stale info once loaded from the server. It also allows you to invalidate the cache for a specific key or multiple keys.

0 commit comments

Comments
 (0)