graceful-updater-windows-helper 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +4 -1
  2. package/package.json +1 -9
package/index.js CHANGED
@@ -1,3 +1,6 @@
1
1
  'use strict';
2
2
 
3
- exports.exeFileDir = __dirname;
3
+ const path = require('path');
4
+
5
+ exports.unzipExeFilePath = path.join(__dirname, 'unzip.exe');
6
+ exports.installerExeFilePath = path.join(__dirname, 'installer.exe');
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "graceful-updater-windows-helper",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "graceful-updater windows helper.",
5
- "scripts": {
6
- },
7
5
  "main": "./index.js",
8
6
  "keywords": [
9
7
  "electron",
@@ -18,11 +16,5 @@
18
16
  "type": "git",
19
17
  "url": "https://github.com/electron-modules/graceful-updater"
20
18
  },
21
- "dependencies": {
22
- },
23
- "devDependencies": {
24
- },
25
- "husky": {
26
- },
27
19
  "license": "MIT"
28
20
  }