Skip to content

Commit a4280b4

Browse files
committed
Scoped was renamed to @jsmdeleon
1 parent 0e3cb3e commit a4280b4

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Publish Package to npmjs
22
on:
3-
pull_request:
4-
types: [closed]
3+
release:
4+
types: [published]
55
jobs:
66
build:
77
runs-on: ubuntu-latest

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ React Native Query Devtool is a monorepo containing a React Native component and
1111

1212
## Standalone App
1313

14-
The standalone app allows you to visualize and debug query data from your React Native application using the `@jdl/react-native-query-devtool` package.
14+
The standalone app allows you to visualize and debug query data from your React Native application using the `@jsmdeleon/react-native-query-devtool` package.
1515

1616
## Installation
1717

@@ -39,17 +39,17 @@ After running the build command, you'll find the freshly built app in a new fold
3939
To use the devtool component in your React Native project, install the package:
4040

4141
```bash
42-
npm install @jdl/react-native-query-devtool
42+
npm install @jsmdeleon/react-native-query-devtool
4343
# or
44-
yarn add @jdl/react-native-query-devtool
44+
yarn add @jsmdeleon/react-native-query-devtool
4545
```
4646

4747
## Usage
4848

4949
In your React Native application, import `QueryNativeDevtool` to send query data to the server app for debugging:
5050

5151
```javascript
52-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool";
52+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool";
5353

5454
export default function App() {
5555
return (
@@ -68,7 +68,7 @@ export default function App() {
6868
If your app runs `react-query v3` pass `version="v3"` prop to `QueryNativeDevtool`
6969

7070
```javascript
71-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool";
71+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool";
7272

7373
export default function App() {
7474
return (
@@ -86,7 +86,7 @@ This will enable your React Native application to send query data to the Electro
8686

8787
## Examples
8888

89-
In the example folder, you can find example projects demonstrating the usage of `@jdl/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
89+
In the example folder, you can find example projects demonstrating the usage of `@jsmdeleon/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
9090

9191
```bash
9292
cd example

example/react-query-v3/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { QueryClient, QueryClientProvider } from "react-query";
33
import { StatusBar } from "expo-status-bar";
44
import { StyleSheet, View, Text, SafeAreaView } from "react-native";
55
import { Users } from "./components/Users";
6-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool/src";
6+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool/src";
77

88
const queryClient = new QueryClient();
99

example/react-query-v4/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
33
import { StatusBar } from "expo-status-bar";
44
import { StyleSheet, View, Text, SafeAreaView } from "react-native";
55
import { Users } from "./components/Users";
6-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool/src";
6+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool/src";
77

88
const queryClient = new QueryClient();
99

example/react-query-v5/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
33
import { StatusBar } from "expo-status-bar";
44
import { StyleSheet, View, Text, SafeAreaView } from "react-native";
55
import { Users } from "./components/Users";
6-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool/src";
6+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool/src";
77

88
const queryClient = new QueryClient();
99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@jdl/react-native-query-devtool-monorepo",
2+
"name": "@jsmdeleon/react-native-query-devtool-monorepo",
33
"description": "React Native Query Devtool is a monorepo containing a React Native component and a standalone app to visualize query data in a similar way to react-query-devtools for the web.",
44
"author": {
55
"name": "Josymar",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@jdl/react-native-query-devtool-app",
2+
"name": "@jsmdeleon/react-native-query-devtool-app",
33
"productName": "react-native-query-devtool-app",
44
"version": "1.0.0",
5-
"description": "The standalone app allows you to visualize and debug query data from your React Native application using the @jdl/react-native-query-devtool package.",
5+
"description": "The standalone app allows you to visualize and debug query data from your React Native application using the @jsmdeleon/react-native-query-devtool package.",
66
"main": ".webpack/main",
77
"scripts": {
88
"start": "electron-forge start",

packages/react-native-query-devtool/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @jdl/react-native-query-devtool
1+
# @jsmdeleon/react-native-query-devtool
22

33
## Features
44

@@ -7,15 +7,15 @@
77

88
## Standalone App
99

10-
The standalone app allows you to visualize and debug query data from your React Native application using the `@jdl/react-native-query-devtool` package.
10+
The standalone app allows you to visualize and debug query data from your React Native application using the `@jsmdeleon/react-native-query-devtool` package.
1111

1212
## Installation
1313

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

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

18-
**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.
18+
**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.
1919

2020
```bash
2121
# Go to app folder
@@ -35,17 +35,17 @@ After running the build command, you'll find the freshly built app in a new fold
3535
To use the devtool component in your React Native project, install the package:
3636

3737
```bash
38-
npm install @jdl/react-native-query-devtool
38+
npm install @jsmdeleon/react-native-query-devtool
3939
# or
40-
yarn add @jdl/react-native-query-devtool
40+
yarn add @jsmdeleon/react-native-query-devtool
4141
```
4242

4343
## Usage
4444

4545
In your React Native application, import `QueryNativeDevtool` to send query data to the Electron app for debugging:
4646

4747
```javascript
48-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool";
48+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool";
4949

5050
export default function App() {
5151
return (
@@ -64,7 +64,7 @@ export default function App() {
6464
If your app runs `react-query v3` pass `version="v3"` prop to `QueryNativeDevtool`
6565

6666
```javascript
67-
import { QueryNativeDevtool } from "@jdl/react-native-query-devtool";
67+
import { QueryNativeDevtool } from "@jsmdeleon/react-native-query-devtool";
6868

6969
export default function App() {
7070
return (
@@ -82,7 +82,7 @@ This will enable your React Native application to send query data to the server
8282

8383
## Examples
8484

85-
In the example folder, you can find example projects demonstrating the usage of `@jdl/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
85+
In the example folder, you can find example projects demonstrating the usage of `@jsmdeleon/react-native-query-devtool` with different versions of React Query (v3, v4, and v5). To test the examples, navigate to the example folder, select the desired example, and run yarn ios or yarn android.
8686

8787
```bash
8888
cd example

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@jdl/react-native-query-devtool",
2+
"name": "@jsmdeleon/react-native-query-devtool",
33
"author": {
44
"name": "Josymar",
55
"email": "[email protected]"

0 commit comments

Comments
 (0)