@rindo/core 4.26.0 → 4.27.1
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 +4 -4
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/rindo.js +1518 -1472
- 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 +4 -4
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +4 -4
- package/internal/app-data/index.cjs +3 -14
- package/internal/app-data/index.js +0 -11
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +304 -263
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +3 -3
- package/internal/hydrate/index.js +308 -266
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +110 -111
- package/internal/package.json +1 -1
- package/internal/rindo-private.d.ts +6 -13
- package/internal/testing/index.js +299 -266
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +231 -231
- package/mock-doc/index.js +228 -228
- package/mock-doc/package.json +1 -1
- package/package.json +2 -2
- package/screenshot/index.js +4 -4
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +3 -3
- package/sys/node/index.js +9 -9
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +9 -16
- package/testing/package.json +1 -1
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Rindo CLI (CommonJS) v4.
|
|
2
|
+
Rindo CLI (CommonJS) v4.27.1 | MIT Licensed | https://rindojs.web.app
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2333,14 +2333,14 @@ var require_lib = __commonJS({
|
|
|
2333
2333
|
});
|
|
2334
2334
|
|
|
2335
2335
|
// src/cli/index.ts
|
|
2336
|
-
var
|
|
2337
|
-
__export(
|
|
2336
|
+
var index_exports = {};
|
|
2337
|
+
__export(index_exports, {
|
|
2338
2338
|
BOOLEAN_CLI_FLAGS: () => BOOLEAN_CLI_FLAGS,
|
|
2339
2339
|
parseFlags: () => parseFlags,
|
|
2340
2340
|
run: () => run,
|
|
2341
2341
|
runTask: () => runTask
|
|
2342
2342
|
});
|
|
2343
|
-
module.exports = __toCommonJS(
|
|
2343
|
+
module.exports = __toCommonJS(index_exports);
|
|
2344
2344
|
|
|
2345
2345
|
// src/cli/config-flags.ts
|
|
2346
2346
|
var BOOLEAN_CLI_FLAGS = [
|
package/cli/index.js
CHANGED
package/cli/package.json
CHANGED