pear-electron 1.7.10 → 1.7.11

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/runtime.js +0 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ Inside the pear-electron runtime desktop application, pear-electron resolves to
55
55
 
56
56
  **index.html**:
57
57
  ```html
58
- <script src="./app.js" type="module">
58
+ <script src="./app.js" type="module"></script>
59
59
  ```
60
60
 
61
61
  **app.js**:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pear-electron",
3
- "version": "1.7.10",
3
+ "version": "1.7.11",
4
4
  "description": "Pear User-Interface Library for Electron",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -20,7 +20,7 @@
20
20
  "pear": {
21
21
  "assets": {
22
22
  "ui": {
23
- "link": "pear://0.2756.goowesg5dga9j1ryx47rsk9o4zms4541me4zerxsnbu8u99duh4o",
23
+ "link": "pear://0.2763.goowesg5dga9j1ryx47rsk9o4zms4541me4zerxsnbu8u99duh4o",
24
24
  "name": "Pear Runtime",
25
25
  "only": [
26
26
  "/boot.bundle",
package/runtime.js CHANGED
@@ -48,7 +48,6 @@ class PearElectron {
48
48
  }
49
49
 
50
50
  async start (opts = {}) {
51
- this.LOG.info('Fetching asset & determining bin path')
52
51
  this.bin = path.join(Pear.config.assets.ui.path, 'by-arch', require.addon.host, bin(Pear.config.assets.ui.name))
53
52
  const parsed = pear(Pear.argv.slice(1))
54
53
  const cmd = command('run', ...run)