fullstacked 0.11.3-1150 → 0.12.0-1173

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 (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -45,7 +45,7 @@ import open from "open";
45
45
  import fastQueryString from "fast-querystring";
46
46
  import { WebSocketServer } from "ws";
47
47
 
48
- // ../../lib/bridge/serialization.ts
48
+ // ../../fullstacked_modules/bridge/serialization.ts
49
49
  var te = new TextEncoder();
50
50
  var td = new TextDecoder();
51
51
  function serializeNumber(n) {
@@ -141,7 +141,7 @@ function deserializeArgs(data) {
141
141
  return args;
142
142
  }
143
143
 
144
- // ../../lib/base64.ts
144
+ // ../../fullstacked_modules/base64.ts
145
145
  var lookup = [];
146
146
  var revLookup = [];
147
147
  var code = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstacked",
3
- "version": "0.11.3-1150",
3
+ "version": "0.12.0-1173",
4
4
  "scripts": {
5
5
  "build": "node build.js",
6
6
  "start": "npm run build && node index.js --lib ../../core/bin --root ~/FullStacked --config ~/.config/fullstacked --editor ../../out/editor",