tutuca 0.9.44 → 0.9.45
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 +3764 -81
- package/dist/tutuca-dev.js +3851 -109
- package/dist/tutuca-dev.min.js +4 -3
- 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 +3 -2
- package/skill/tutuca/advanced.md +3 -4
- package/skill/tutuca/cli.md +78 -7
- package/skill/tutuca/core.md +19 -6
- package/skill/SKILL.md +0 -46
- package/skill/advanced.md +0 -146
- package/skill/cli.md +0 -117
- package/skill/core.md +0 -766
package/dist/tutuca-extra.js
CHANGED
|
@@ -7975,6 +7975,9 @@ var macro = (defaults, rawView) => new Macro(defaults, rawView);
|
|
|
7975
7975
|
function check(_app) {
|
|
7976
7976
|
return { error: 0, warn: 0, hint: 0, dummyCheck: true };
|
|
7977
7977
|
}
|
|
7978
|
+
async function test(_opts) {
|
|
7979
|
+
return null;
|
|
7980
|
+
}
|
|
7978
7981
|
function tutuca(nodeOrSelector) {
|
|
7979
7982
|
const rootNode = typeof nodeOrSelector === "string" ? document.querySelector(nodeOrSelector) : nodeOrSelector;
|
|
7980
7983
|
const comps = new Components;
|
|
@@ -8008,6 +8011,7 @@ export {
|
|
|
8008
8011
|
updateIn$1 as updateIn,
|
|
8009
8012
|
update$1 as update,
|
|
8010
8013
|
tutuca,
|
|
8014
|
+
test,
|
|
8011
8015
|
setIn$1 as setIn,
|
|
8012
8016
|
set,
|
|
8013
8017
|
removeIn,
|