@rindo/core 4.22.2 → 4.22.3-dev.1738537832.d58c5b1
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/cli/index.cjs +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/rindo.js +4 -4
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +18 -14
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +18 -14
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +4 -1
- package/internal/package.json +1 -1
- package/internal/testing/index.js +17 -13
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +4 -1
- package/mock-doc/index.js +4 -1
- package/mock-doc/package.json +1 -1
- package/package.json +1 -1
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +12 -12
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +1 -1
- package/testing/package.json +1 -1
package/sys/node/package.json
CHANGED
package/sys/node/worker.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Rindo Node System Worker v4.22.
|
|
2
|
+
Rindo Node System Worker v4.22.3-dev.1738537832.d58c5b1 | MIT Licensed | https://rindojs.web.app
|
|
3
3
|
*/
|
|
4
4
|
"use strict";var f=Object.create;var s=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var E=Object.getOwnPropertyNames;var y=Object.getPrototypeOf,R=Object.prototype.hasOwnProperty;var g=(r,e,d,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of E(e))!R.call(r,o)&&o!==d&&s(r,o,{get:()=>e[o],enumerable:!(t=p(e,o))||t.enumerable});return r};var a=(r,e,d)=>(d=r!=null?f(y(r)):{},g(e||!r||!r.__esModule?s(d,"default",{value:r,enumerable:!0}):d,r));var l=a(require("../../compiler/rindo.js")),m=a(require("../../sys/node/index.js"));var c=(r,e)=>{let d=o=>{o&&o.code==="ERR_IPC_CHANNEL_CLOSED"&&r.exit(0)},t=(o,n)=>{let i={rindoId:o,rindoRtnValue:null,rindoRtnError:"Error"};typeof n=="string"?i.rindoRtnError+=": "+n:n&&(n.stack?i.rindoRtnError+=": "+n.stack:n.message&&(i.rindoRtnError+=":"+n.message)),r.send(i,d)};r.on("message",async o=>{if(o&&typeof o.rindoId=="number")try{let n={rindoId:o.rindoId,rindoRtnValue:await e(o),rindoRtnError:null};r.send(n,d)}catch(n){t(o.rindoId,n)}}),r.on("unhandledRejection",o=>{t(-1,o)})};var k=m.createNodeSys({process}),M=l.createWorkerMessageHandler(k);c(process,M);
|
package/testing/index.js
CHANGED