Skip to content

Commit 0e3cb3e

Browse files
authored
Release 03-07-24 (#3)
* 🎉Release version v1.0.0
1 parent 3657813 commit 0e3cb3e

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Publish Package to npmjs
22
on:
3-
release:
4-
types: [published]
3+
pull_request:
4+
types: [closed]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
@@ -13,6 +13,6 @@ jobs:
1313
registry-url: "https://registry.npmjs.org"
1414
- run: yarn install --frozen-lockfile
1515
- run: yarn build-client
16-
- run: yarn publish
16+
- run: yarn publish-client
1717
env:
1818
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release-electron.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
os:
12-
[
13-
{ name: "macos", image: "macos-latest" },
14-
{ name: "linux", image: "ubuntu-latest" },
11+
os: [
1512
{ name: "windows", image: "windows-latest" },
13+
{ name: "macos", image: "macos-latest" },
14+
# { name: "linux", image: "ubuntu-latest" },
1615
]
1716

1817
runs-on: ${{ matrix.os.image }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ The standalone app allows you to visualize and debug query data from your React
1515

1616
## Installation
1717

18-
You can download the standalone app from the following link. Currently, it's available only for **macOS M1**:
18+
You can download the standalone app from the following link. Currently, it's available only for **macOS M1** and **Windows x64**:
1919

2020
[Download latest App](https://github.com/jossydeleon/react-native-query-devtool-monorepo/releases)
2121

22-
**Windows and Linux users:** You need to build the app from source as it's currently only available for **macOS M1**. Ensure to set up your environment accordingly before building the app.
22+
**Linux users:** You need to build the app from source as it's currently only available for **macOS M1** and **Windows x64**. Ensure to set up your environment accordingly before building the app.
2323

2424
```bash
2525
# Go to app folder

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"build-server": "cd ./packages/react-native-query-devtool-app && electron-forge make",
1313
"publish-server":"cd ./packages/react-native-query-devtool-app && electron-forge publish",
1414
"build-client": "cd ./packages/react-native-query-devtool && tsup",
15+
"publish-client": "cd ./packages/react-native-query-devtool && yarn publish --access public",
1516
"v3-example-ios": "cd ./example/react-query-v3 && expo start --ios",
1617
"v3-example-android": "cd ./example/react-query-v3 && expo start --android"
1718
},

packages/react-native-query-devtool-app/forge.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ const config: ForgeConfig = {
1515
},
1616
rebuildConfig: {},
1717
makers: [
18-
new MakerSquirrel({}),
18+
new MakerSquirrel({ name: "rnqdt" }),
1919
new MakerZIP({}, ["darwin"]),
20-
new MakerRpm({}),
21-
new MakerDeb({}),
20+
new MakerRpm({ options: { name: "rnqdt" } }),
21+
new MakerDeb({ options: { name: "rnqdt" } }),
2222
],
2323
publishers: [
2424
{

packages/react-native-query-devtool/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
},
77
"version": "1.0.0",
88
"description": "React native component designed to simplify the process of subscribing to changes in React Query data and forwarding this information to a debugger application",
9+
"repository": "https://github.com/jossydeleon/react-native-query-devtool-monorepo.git",
910
"main": "./dist/index.js",
1011
"types": "./dist/index.d.ts",
1112
"files": [

0 commit comments

Comments
 (0)