lucid-package 0.0.11 → 0.0.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-package",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -90,7 +90,7 @@ async function debugEditorExtension(name) {
90
90
  codeUrl: 'http://localhost:9900/extension.js',
91
91
  });
92
92
  });
93
- app.listen(9900, () => {
93
+ app.listen(9900, 'localhost', () => {
94
94
  console.log('Listening at http://localhost:9900/extension.js');
95
95
  });
96
96
  (0, shapelibrary_1.debugShapeLibraries)('../..');
@@ -199,7 +199,7 @@ async function debugShapeLibraries(packagePath = '.') {
199
199
  socket.send('refresh');
200
200
  }
201
201
  });
202
- server.listen(9901, () => {
202
+ server.listen(9901, 'localhost', () => {
203
203
  console.log('Listening at http://localhost:9901/shapeLibraries');
204
204
  });
205
205
  }