tutuca 0.9.21 → 0.9.23
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/dist/tutuca-cli.js +291 -283
- package/dist/tutuca-dev.js +649 -569
- package/dist/tutuca-dev.min.js +2 -2
- package/dist/tutuca-extra.js +4 -0
- package/dist/tutuca-extra.min.js +1 -1
- package/dist/tutuca.js +4 -0
- package/dist/tutuca.min.js +1 -1
- package/package.json +1 -1
package/dist/tutuca.js
CHANGED
|
@@ -7755,6 +7755,9 @@ var component = (opts) => new Component(classFromData(opts.name, opts), opts);
|
|
|
7755
7755
|
var css = String.raw;
|
|
7756
7756
|
var html = String.raw;
|
|
7757
7757
|
var macro = (defaults, rawView) => new Macro(defaults, rawView);
|
|
7758
|
+
function check(_app) {
|
|
7759
|
+
return { error: 0, warn: 0, hint: 0, dummyCheck: true };
|
|
7760
|
+
}
|
|
7758
7761
|
function tutuca(nodeOrSelector) {
|
|
7759
7762
|
const rootNode = typeof nodeOrSelector === "string" ? document.querySelector(nodeOrSelector) : nodeOrSelector;
|
|
7760
7763
|
const comps = new Components;
|
|
@@ -7806,6 +7809,7 @@ export {
|
|
|
7806
7809
|
fieldsByClass,
|
|
7807
7810
|
css,
|
|
7808
7811
|
component,
|
|
7812
|
+
check,
|
|
7809
7813
|
Stack2 as Stack,
|
|
7810
7814
|
Set2 as Set,
|
|
7811
7815
|
Seq,
|