sliftutils 0.7.7 → 0.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,11 +14,8 @@ async function main() {
14
14
  } catch (error) {
15
15
  console.error("ERROR: Electron is not installed.");
16
16
  console.error("");
17
- console.error("Electron is too heavy to be included by default for non-electron projects.");
18
- console.error("Please manually add Electron to your package.json dependencies:");
19
- console.error("");
17
+ console.error("Electron is too heavy to be included by default for non-electron projects. Please run:");
20
18
  console.error(green("yarn add electron"));
21
- console.error("");
22
19
  process.exit(1);
23
20
  }
24
21
 
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="./electronRenderer.js"></script>
9
+ <script src="../electronRenderer.js"></script>
10
10
  </body>
11
11
  </html>
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sliftutils",
3
- "version": "0.7.7",
3
+ "version": "0.7.9",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {