Skip to content

Commit f6dc597

Browse files
committed
v0.10.1
1 parent 5526f30 commit f6dc597

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

auto_updater.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"url": "https://github.com/jhen0409/react-native-debugger/releases/download/v0.10.0/rn-debugger-macos-x64.zip",
3-
"name": "v0.10.0",
4-
"notes": "Upgrade Electron version to 6.0.8"
2+
"url": "https://github.com/jhen0409/react-native-debugger/releases/download/v0.10.1/rn-debugger-macos-x64.zip",
3+
"name": "v0.10.1",
4+
"notes": "1. Update Electron version to 6.0.10\n2. Fix raw tab empty issue of Redux DevTools"
55
}

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-debugger",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"productName": "React Native Debugger",
55
"description": "The standalone app for React Native Debugger, with React DevTools / Redux DevTools",
66
"main": "main.js",

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
22
"name": "react-native-debugger",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"productName": "React Native Debugger In Dev",
55
"description": "The standalone app for React Native Debugger, with React DevTools / Redux DevTools",
66
"main": "electron/main.js",
77
"scripts": {
88
"pack-macos": "./scripts/package-macos.sh",
9-
"pack-linux": "npm run build && ./scripts/package-linux.sh",
10-
"pack-windows": "npm run build && ./scripts/package-windows.sh",
11-
"prepack": "npm run build",
12-
"pack": "./scripts/package-macos.sh && ./scripts/package-linux.sh && ./scripts/package-windows.sh",
9+
"pack-linux": "./scripts/package-linux.sh",
10+
"pack-windows": "./scripts/package-windows.sh",
11+
"pack": "yarn build && ./scripts/package-linux.sh && ./scripts/package-windows.sh && ./scripts/package-macos.sh",
1312
"start": "cd dist && cross-env NODE_ENV=production electron ./",
1413
"build:main": "cross-env NODE_ENV=production webpack --config webpack/main.prod.babel.js --progress --profile --colors",
1514
"build:renderer": "cross-env NODE_ENV=production webpack --config webpack/renderer.prod.babel.js --progress --profile --colors",
16-
"build": "npm run build:main && npm run build:renderer",
15+
"build": "yarn build:main && yarn build:renderer",
1716
"dev:webpack": "webpack-dev-server --config webpack/renderer.dev.babel.js",
1817
"dev:electron": "cross-env NODE_ENV=development electron -r babel-core/register -r ./electron/debug .",
1918
"lint": "eslint .",

0 commit comments

Comments
 (0)