Skip to content

Commit 3657813

Browse files
committed
Setting release.yml file
1 parent 721a66d commit 3657813

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/release-electron.yml

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

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

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@jdl/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.",
4-
"author": "Josymar De Leon",
4+
"author": {
5+
"name": "Josymar",
6+
"email": "[email protected]"
7+
},
58
"version": "1.0.0",
69
"private": true,
710
"scripts": {

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"main": ".webpack/main",
77
"scripts": {
88
"start": "electron-forge start",
9-
"dev": "nodemon --watch ./src/server/index.ts --exec npm run start",
109
"package": "electron-forge package",
1110
"make": "electron-forge make",
1211
"publish": "electron-forge publish",
@@ -20,7 +19,7 @@
2019
],
2120
"author": {
2221
"name": "Josymar",
23-
"email": "josymar@estatespace.com"
22+
"email": "josymardeleon.dev@gmail.com"
2423
},
2524
"dependencies": {
2625
"electron-squirrel-startup": "^1.0.0",
@@ -51,7 +50,6 @@
5150
"eslint-plugin-import": "^2.25.0",
5251
"fork-ts-checker-webpack-plugin": "^7.2.13",
5352
"node-loader": "^2.0.0",
54-
"nodemon": "^3.0.3",
5553
"style-loader": "^3.0.0",
5654
"ts-loader": "^9.2.2",
5755
"ts-node": "^10.0.0",

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "@jdl/react-native-query-devtool",
3-
"author": "Josymar De Leon",
3+
"author": {
4+
"name": "Josymar",
5+
"email": "[email protected]"
6+
},
47
"version": "1.0.0",
58
"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",
69
"main": "./dist/index.js",

0 commit comments

Comments
 (0)