Skip to content

Commit f15fa02

Browse files
Merge pull request #69 from oslabs-beta/dev
Dev
2 parents 358da32 + a1f8525 commit f15fa02

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

.github/workflows/npmPublish.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@ jobs:
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version: '20' # Use Node.js version 20
24+
registry-url: 'https://registry.npmjs.org'
2425

2526
- name: Install dependencies for package-react
2627
working-directory: ./package-react
27-
run: npm install
28+
run: npm ci
2829

2930
- name: Build package-react
3031
working-directory: ./package-react
31-
run: npm run build # If you have a build step, otherwise remove this step
32+
run: npm run build
3233

3334
- name: Publish package-react
3435
working-directory: ./package-react
@@ -46,14 +47,15 @@ jobs:
4647
uses: actions/setup-node@v4
4748
with:
4849
node-version: '20' # Use Node.js version 20
50+
registry-url: 'https://registry.npmjs.org'
4951

5052
- name: Install dependencies for package-svelte
5153
working-directory: ./package-svelte
52-
run: npm install
54+
run: npm ci
5355

5456
- name: Build package-svelte
5557
working-directory: ./package-svelte
56-
run: npm run build # If you have a build step, otherwise remove this step
58+
run: npm run build
5759

5860
- name: Publish package-svelte
5961
working-directory: ./package-svelte
@@ -71,14 +73,15 @@ jobs:
7173
uses: actions/setup-node@v4
7274
with:
7375
node-version: '20' # Use Node.js version 20
76+
registry-url: 'https://registry.npmjs.org'
7477

7578
- name: Install dependencies for package-vue
7679
working-directory: ./package-vue
77-
run: npm install
80+
run: npm ci
7881

7982
- name: Build package-vue
8083
working-directory: ./package-vue
81-
run: npm run build # If you have a build step, otherwise remove this step
84+
run: npm run build
8285

8386
- name: Publish package-vue
8487
working-directory: ./package-vue

package-react/package.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/oslabs-beta/react-query-rewind"
19+
"url": "git+https://github.com/oslabs-beta/react-query-rewind.git"
2020
},
21-
"version": "2.1.1",
21+
"version": "2.1.3",
2222
"description": "React Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
2323
"keywords": [
2424
"react",
@@ -50,29 +50,24 @@
5050
"unlink-package": "(cd example/client && npm unlink react-query-rewind) && npm unlink",
5151
"package-setup-1": "npm i && npm run install-example && npm run link-dependencies && npm run watch",
5252
"package-setup-2": "npm run link-package && npm run example",
53-
54-
5553
"install-algolia": "cd react-examples-tanstack/algolia && npm i",
5654
"link-package-algolia": "npm link && (cd react-examples-tanstack/algolia && npm link react-query-rewind)",
5755
"link-dependencies-algolia": "npm link react-examples-tanstack/algolia/node_modules/react react-examples-tanstack/algolia/node_modules/react-dom example/client/node_modules/@tanstack/react-query",
5856
"unlink-package-algolia": "(cd react-examples-tanstack/algolia && npm unlink react-query-rewind) && npm unlink",
5957
"package-setup-1-algolia": "npm i && npm run install-algolia && npm run link-dependencies-algolia && npm run watch",
6058
"package-setup-2-algolia": "npm run link-package-algolia && (cd react-examples-tanstack/algolia && npm run dev)",
61-
6259
"install-basic": "cd react-examples-tanstack/basic && npm i",
6360
"link-package-basic": "npm link && (cd react-examples-tanstack/basic && npm link react-query-rewind)",
6461
"link-dependencies-basic": "npm link react-examples-tanstack/basic/node_modules/react react-examples-tanstack/basic/node_modules/react-dom example/client/node_modules/@tanstack/react-query",
6562
"unlink-package-basic": "(cd react-examples-tanstack/basic && npm unlink react-query-rewind) && npm unlink",
6663
"package-setup-1-basic": "npm i && npm run install-basic && npm run link-dependencies-basic && npm run watch",
6764
"package-setup-2-basic": "npm run link-package-basic && (cd react-examples-tanstack/basic && npm run dev)",
68-
6965
"install-basic-typescript": "cd react-examples-tanstack/basic-typescript && npm i",
7066
"link-package-basic-typescript": "npm link && (cd react-examples-tanstack/basic-typescript && npm link react-query-rewind)",
7167
"link-dependencies-basic-typescript": "npm link react-examples-tanstack/basic-typescript/node_modules/react react-examples-tanstack/basic-typescript/node_modules/react-dom example/client/node_modules/@tanstack/react-query",
7268
"unlink-package-basic-typescript": "(cd react-examples-tanstack/basic-typescript && npm unlink react-query-rewind) && npm unlink",
7369
"package-setup-1-basic-typescript": "npm i && npm run install-basic-typescript && npm run link-dependencies-basic-typescript && npm run watch",
7470
"package-setup-2-basic-typescript": "npm run link-package-basic-typescript && (cd react-examples-tanstack/basic-typescript && npm run dev)",
75-
7671
"install-pagination": "cd react-examples-tanstack/pagination && npm i",
7772
"link-package-pagination": "npm link && (cd react-examples-tanstack/pagination && npm link react-query-rewind)",
7873
"link-dependencies-pagination": "npm link react-examples-tanstack/pagination/node_modules/react react-examples-tanstack/pagination/node_modules/react-dom example/client/node_modules/@tanstack/react-query",

package-svelte/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/oslabs-beta/react-query-rewind"
19+
"url": "git+https://github.com/oslabs-beta/react-query-rewind"
2020
},
21-
"version": "1.1.1",
21+
"version": "1.1.3",
2222
"description": "React Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
2323
"keywords": [
2424
"react",

package-vue/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
22
"name": "@react-query-rewind/vue-query-rewind",
3-
"version": "1.0.4",
3+
"version": "1.1.3",
44
"type": "module",
55
"files": [
66
"dist"
77
],
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/oslabs-beta/react-query-rewind"
11+
},
812
"main": "./dist/VueQueryRewind.cjs.js",
913
"module": "./dist/VueQueryRewind.es.js",
1014
"types": "./dist/VueQueryRewind.es.d.ts",

0 commit comments

Comments
 (0)