@adaas/are-html 0.0.21 → 0.0.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/.conf/tsconfig.base.json +1 -0
- package/.conf/tsconfig.browser.json +1 -0
- package/.conf/tsconfig.node.json +1 -0
- package/dist/browser/index.d.mts +214 -3
- package/dist/browser/index.mjs +787 -201
- package/dist/browser/index.mjs.map +1 -1
- package/dist/node/{AreBinding.attribute-doUvtOjc.d.mts → AreBinding.attribute-BWzEIw6H.d.mts} +45 -0
- package/dist/node/{AreBinding.attribute-Bm5LlOyE.d.ts → AreBinding.attribute-GpT-5Qmf.d.ts} +45 -0
- package/dist/node/attributes/AreBinding.attribute.d.mts +1 -1
- package/dist/node/attributes/AreBinding.attribute.d.ts +1 -1
- package/dist/node/attributes/AreDirective.attribute.d.mts +1 -1
- package/dist/node/attributes/AreDirective.attribute.d.ts +1 -1
- package/dist/node/attributes/AreEvent.attribute.d.mts +1 -1
- package/dist/node/attributes/AreEvent.attribute.d.ts +1 -1
- package/dist/node/attributes/AreStatic.attribute.d.mts +1 -1
- package/dist/node/attributes/AreStatic.attribute.d.ts +1 -1
- package/dist/node/directives/AreDirectiveFor.directive.d.mts +55 -2
- package/dist/node/directives/AreDirectiveFor.directive.d.ts +55 -2
- package/dist/node/directives/AreDirectiveFor.directive.js +141 -12
- package/dist/node/directives/AreDirectiveFor.directive.js.map +1 -1
- package/dist/node/directives/AreDirectiveFor.directive.mjs +141 -12
- package/dist/node/directives/AreDirectiveFor.directive.mjs.map +1 -1
- package/dist/node/directives/AreDirectiveIf.directive.d.mts +1 -1
- package/dist/node/directives/AreDirectiveIf.directive.d.ts +1 -1
- package/dist/node/directives/AreDirectiveShow.directive.d.mts +1 -1
- package/dist/node/directives/AreDirectiveShow.directive.d.ts +1 -1
- package/dist/node/engine/AreHTML.compiler.d.mts +1 -1
- package/dist/node/engine/AreHTML.compiler.d.ts +1 -1
- package/dist/node/engine/AreHTML.compiler.js +4 -0
- package/dist/node/engine/AreHTML.compiler.js.map +1 -1
- package/dist/node/engine/AreHTML.compiler.mjs +4 -0
- package/dist/node/engine/AreHTML.compiler.mjs.map +1 -1
- package/dist/node/engine/AreHTML.constants.d.mts +33 -1
- package/dist/node/engine/AreHTML.constants.d.ts +33 -1
- package/dist/node/engine/AreHTML.constants.js +166 -0
- package/dist/node/engine/AreHTML.constants.js.map +1 -1
- package/dist/node/engine/AreHTML.constants.mjs +165 -1
- package/dist/node/engine/AreHTML.constants.mjs.map +1 -1
- package/dist/node/engine/AreHTML.context.d.mts +66 -0
- package/dist/node/engine/AreHTML.context.d.ts +66 -0
- package/dist/node/engine/AreHTML.context.js +98 -0
- package/dist/node/engine/AreHTML.context.js.map +1 -1
- package/dist/node/engine/AreHTML.context.mjs +98 -0
- package/dist/node/engine/AreHTML.context.mjs.map +1 -1
- package/dist/node/engine/AreHTML.interpreter.d.mts +3 -0
- package/dist/node/engine/AreHTML.interpreter.d.ts +3 -0
- package/dist/node/engine/AreHTML.interpreter.js +66 -10
- package/dist/node/engine/AreHTML.interpreter.js.map +1 -1
- package/dist/node/engine/AreHTML.interpreter.mjs +66 -10
- package/dist/node/engine/AreHTML.interpreter.mjs.map +1 -1
- package/dist/node/engine/AreHTML.lifecycle.d.mts +2 -2
- package/dist/node/engine/AreHTML.lifecycle.d.ts +2 -2
- package/dist/node/engine/AreHTML.lifecycle.js +32 -4
- package/dist/node/engine/AreHTML.lifecycle.js.map +1 -1
- package/dist/node/engine/AreHTML.lifecycle.mjs +32 -4
- package/dist/node/engine/AreHTML.lifecycle.mjs.map +1 -1
- package/dist/node/engine/AreHTML.tokenizer.d.mts +1 -1
- package/dist/node/engine/AreHTML.tokenizer.d.ts +1 -1
- package/dist/node/engine/AreHTML.tokenizer.js +7 -1
- package/dist/node/engine/AreHTML.tokenizer.js.map +1 -1
- package/dist/node/engine/AreHTML.tokenizer.mjs +7 -1
- package/dist/node/engine/AreHTML.tokenizer.mjs.map +1 -1
- package/dist/node/engine/AreHTML.transformer.d.mts +1 -1
- package/dist/node/engine/AreHTML.transformer.d.ts +1 -1
- package/dist/node/helpers/AreScheduler.helper.d.mts +39 -0
- package/dist/node/helpers/AreScheduler.helper.d.ts +39 -0
- package/dist/node/helpers/AreScheduler.helper.js +40 -0
- package/dist/node/helpers/AreScheduler.helper.js.map +1 -0
- package/dist/node/helpers/AreScheduler.helper.mjs +40 -0
- package/dist/node/helpers/AreScheduler.helper.mjs.map +1 -0
- package/dist/node/index.d.mts +4 -3
- package/dist/node/index.d.ts +4 -3
- package/dist/node/index.js +7 -0
- package/dist/node/index.mjs +1 -0
- package/dist/node/instructions/AddStaticHTML.instruction.d.mts +8 -0
- package/dist/node/instructions/AddStaticHTML.instruction.d.ts +8 -0
- package/dist/node/instructions/AddStaticHTML.instruction.js +31 -0
- package/dist/node/instructions/AddStaticHTML.instruction.js.map +1 -0
- package/dist/node/instructions/AddStaticHTML.instruction.mjs +24 -0
- package/dist/node/instructions/AddStaticHTML.instruction.mjs.map +1 -0
- package/dist/node/instructions/AreHTML.instructions.constants.d.mts +1 -0
- package/dist/node/instructions/AreHTML.instructions.constants.d.ts +1 -0
- package/dist/node/instructions/AreHTML.instructions.constants.js +1 -0
- package/dist/node/instructions/AreHTML.instructions.constants.js.map +1 -1
- package/dist/node/instructions/AreHTML.instructions.constants.mjs +1 -0
- package/dist/node/instructions/AreHTML.instructions.constants.mjs.map +1 -1
- package/dist/node/instructions/AreHTML.instructions.types.d.mts +9 -1
- package/dist/node/instructions/AreHTML.instructions.types.d.ts +9 -1
- package/dist/node/lib/AreDirective/AreDirective.component.d.mts +1 -1
- package/dist/node/lib/AreDirective/AreDirective.component.d.ts +1 -1
- package/dist/node/lib/AreDirective/AreDirective.types.d.mts +1 -1
- package/dist/node/lib/AreDirective/AreDirective.types.d.ts +1 -1
- package/dist/node/lib/AreHTML/AreHTML.tokenizer.d.mts +1 -1
- package/dist/node/lib/AreHTML/AreHTML.tokenizer.d.ts +1 -1
- package/dist/node/lib/AreHTMLAttribute/AreHTML.attribute.d.mts +1 -1
- package/dist/node/lib/AreHTMLAttribute/AreHTML.attribute.d.ts +1 -1
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.d.mts +1 -1
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.d.ts +1 -1
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.js +51 -0
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.js.map +1 -1
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.mjs +51 -0
- package/dist/node/lib/AreHTMLNode/AreHTMLNode.mjs.map +1 -1
- package/dist/node/lib/AreRoot/AreRoot.component.js +1 -1
- package/dist/node/lib/AreRoot/AreRoot.component.js.map +1 -1
- package/dist/node/lib/AreRoot/AreRoot.component.mjs +1 -1
- package/dist/node/lib/AreRoot/AreRoot.component.mjs.map +1 -1
- package/dist/node/nodes/AreComment.d.mts +1 -1
- package/dist/node/nodes/AreComment.d.ts +1 -1
- package/dist/node/nodes/AreComponent.d.mts +1 -1
- package/dist/node/nodes/AreComponent.d.ts +1 -1
- package/dist/node/nodes/AreInterpolation.d.mts +1 -1
- package/dist/node/nodes/AreInterpolation.d.ts +1 -1
- package/dist/node/nodes/AreRoot.d.mts +1 -1
- package/dist/node/nodes/AreRoot.d.ts +1 -1
- package/dist/node/nodes/AreText.d.mts +1 -1
- package/dist/node/nodes/AreText.d.ts +1 -1
- package/examples/dashboard/concept.ts +1 -1
- package/examples/dashboard/dist/index.html +1 -1
- package/examples/dashboard/dist/{mq19zxz4-mnlgmd.js → mqiw5sqa-ypckmj.js} +2275 -1323
- package/examples/dashboard/src/concept.ts +3 -2
- package/examples/for-perf/concept.ts +45 -0
- package/examples/for-perf/containers/UI.container.ts +161 -0
- package/examples/for-perf/dist/index.html +270 -0
- package/examples/for-perf/dist/mqj1mpf2-z4aokv.js +15664 -0
- package/examples/for-perf/dist/mqj1mpff-4fr7mw.js +15664 -0
- package/examples/for-perf/public/index.html +270 -0
- package/examples/for-perf/src/components/PerfApp.component.ts +37 -0
- package/examples/for-perf/src/components/PerfControls.component.ts +34 -0
- package/examples/for-perf/src/components/PerfGrid.component.ts +225 -0
- package/examples/for-perf/src/components/PerfHeader.component.ts +34 -0
- package/examples/for-perf/src/components/PerfStats.component.ts +43 -0
- package/examples/for-perf/src/concept.ts +94 -0
- package/examples/jumpstart/dist/index.html +1 -1
- package/examples/jumpstart/dist/{mq7hqrxy-4kus50.js → mq7mgf58-vbf07e.js} +269 -91
- package/examples/signal-routing/dist/index.html +1 -1
- package/examples/signal-routing/dist/{mq7k53th-qiwy4x.js → mqiwo23h-bhcolu.js} +2090 -1430
- package/jest.config.ts +1 -0
- package/package.json +10 -9
- package/src/directives/AreDirectiveFor.directive.ts +233 -19
- package/src/engine/AreHTML.compiler.ts +13 -0
- package/src/engine/AreHTML.constants.ts +142 -0
- package/src/engine/AreHTML.context.ts +112 -0
- package/src/engine/AreHTML.interpreter.ts +114 -13
- package/src/engine/AreHTML.lifecycle.ts +91 -7
- package/src/engine/AreHTML.tokenizer.ts +30 -1
- package/src/helpers/AreScheduler.helper.ts +61 -0
- package/src/index.ts +1 -0
- package/src/instructions/AddStaticHTML.instruction.ts +23 -0
- package/src/instructions/AreHTML.instructions.constants.ts +1 -0
- package/src/instructions/AreHTML.instructions.types.ts +9 -0
- package/src/lib/AreHTMLNode/AreHTMLNode.ts +74 -0
- package/src/lib/AreRoot/AreRoot.component.ts +4 -1
- package/tests/StaticIsland.test.ts +115 -0
- package/tsconfig.json +1 -0
|
@@ -16,6 +16,19 @@ import { AreDirectiveMeta } from "@adaas/are-html/directive/AreDirective.meta";
|
|
|
16
16
|
description: 'AreHTMLNode represents a node in the HTML structure. It extends the base AreNode and includes properties and methods specific to HTML nodes, such as handling attributes, directives, events, and styles.'
|
|
17
17
|
})
|
|
18
18
|
export class AreHTMLNode extends AreNode {
|
|
19
|
+
/**
|
|
20
|
+
* When set, this node is a *static island* root: its entire inner subtree
|
|
21
|
+
* was detected (at tokenize time) to contain no ARE-reactive constructs —
|
|
22
|
+
* no interpolations, no dynamic attributes and only standard HTML tags.
|
|
23
|
+
*
|
|
24
|
+
* Instead of being exploded into one child AreNode per element/text node,
|
|
25
|
+
* the inner markup is preserved verbatim here and materialised in a single
|
|
26
|
+
* pass by the interpreter (browser-parsed `innerHTML` / cached `<template>`
|
|
27
|
+
* clone). The node's OWN attributes (including any dynamic `:`/`@`/`$` on
|
|
28
|
+
* the island root) still compile and stay reactive as usual.
|
|
29
|
+
*/
|
|
30
|
+
protected _staticInnerHTML?: string;
|
|
31
|
+
|
|
19
32
|
/**
|
|
20
33
|
* Actual node type.
|
|
21
34
|
* By default it's a tag name
|
|
@@ -23,6 +36,67 @@ export class AreHTMLNode extends AreNode {
|
|
|
23
36
|
get tag(): string {
|
|
24
37
|
return this.aseid.entity;
|
|
25
38
|
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* The verbatim inner markup captured when this node was identified as a
|
|
42
|
+
* static island, or `undefined` for ordinary (per-node) nodes.
|
|
43
|
+
*/
|
|
44
|
+
get staticInnerHTML(): string | undefined {
|
|
45
|
+
return this._staticInnerHTML;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Whether this node is a static-island root (see `_staticInnerHTML`).
|
|
50
|
+
*/
|
|
51
|
+
get isStaticIsland(): boolean {
|
|
52
|
+
return this._staticInnerHTML !== undefined;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Marks this node as a static-island root, capturing the verbatim inner
|
|
57
|
+
* markup to be materialised in one shot by the interpreter. Called by the
|
|
58
|
+
* tokenizer when the node's inner content is detected to be fully static.
|
|
59
|
+
*/
|
|
60
|
+
markStatic(innerHTML: string): void {
|
|
61
|
+
this._staticInnerHTML = innerHTML;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Deep-clone the node. Overridden to carry over the static-island marker
|
|
66
|
+
* (`_staticInnerHTML`), which lives on AreHTMLNode and is therefore NOT
|
|
67
|
+
* copied by the base AreNode.clone(). Without this, cloning a directive
|
|
68
|
+
* template ($if/$for) that wraps a static island (e.g. `<span $if>★</span>`)
|
|
69
|
+
* would drop the captured inner markup and render an empty element. The
|
|
70
|
+
* base clone() recurses via each child's polymorphic clone(), so nested
|
|
71
|
+
* island children are preserved automatically through this override.
|
|
72
|
+
*/
|
|
73
|
+
clone<T extends AreNode = AreNode>(this: T): T {
|
|
74
|
+
const cloned = super.clone() as unknown as AreHTMLNode;
|
|
75
|
+
const self = this as unknown as AreHTMLNode;
|
|
76
|
+
|
|
77
|
+
if (self._staticInnerHTML !== undefined)
|
|
78
|
+
cloned.markStatic(self._staticInnerHTML);
|
|
79
|
+
|
|
80
|
+
return cloned as unknown as T;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Clone the node while transferring its existing scope to the clone (used by
|
|
85
|
+
* the $if/$for directives to turn the original node into a lightweight group
|
|
86
|
+
* container). Overridden for the same reason as `clone()`: the static-island
|
|
87
|
+
* marker must survive so a directive applied to an island root keeps its
|
|
88
|
+
* inner markup.
|
|
89
|
+
*/
|
|
90
|
+
cloneWithScope<T extends AreNode = AreNode>(this: T): T {
|
|
91
|
+
const cloned = super.cloneWithScope() as unknown as AreHTMLNode;
|
|
92
|
+
const self = this as unknown as AreHTMLNode;
|
|
93
|
+
|
|
94
|
+
if (self._staticInnerHTML !== undefined)
|
|
95
|
+
cloned.markStatic(self._staticInnerHTML);
|
|
96
|
+
|
|
97
|
+
return cloned as unknown as T;
|
|
98
|
+
}
|
|
99
|
+
|
|
26
100
|
/**
|
|
27
101
|
* The static attributes defined for the node, which are typically used to represent static properties or characteristics of the node that do not change based on the context or state. These attributes are usually defined in the template and are not reactive.
|
|
28
102
|
*
|
|
@@ -160,7 +160,10 @@ export class AreRoot extends Are {
|
|
|
160
160
|
child.transform();
|
|
161
161
|
|
|
162
162
|
child.compile();
|
|
163
|
-
|
|
163
|
+
// The initial mount is atomic (synchronous): the routed subtree is
|
|
164
|
+
// rendered in one uninterrupted pass so no update can observe a
|
|
165
|
+
// partially mounted tree. The await is a harmless no-op here.
|
|
166
|
+
await child.mount();
|
|
164
167
|
}
|
|
165
168
|
}
|
|
166
169
|
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { isStaticMarkup, STANDARD_HTML_TAGS } from '../src/engine/AreHTML.constants';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Unit coverage for the static-island detector that drives the
|
|
5
|
+
* tokenizer fast-path (skip per-node explosion) and the AddStaticHTML
|
|
6
|
+
* one-shot materialisation. Correctness here is what guarantees we never
|
|
7
|
+
* collapse a subtree that actually needs reactive per-node handling.
|
|
8
|
+
*/
|
|
9
|
+
describe('isStaticMarkup — static-island detection', () => {
|
|
10
|
+
|
|
11
|
+
describe('returns TRUE for fully static content', () => {
|
|
12
|
+
it('plain text', () => {
|
|
13
|
+
expect(isStaticMarkup('Hello World')).toBe(true);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it('text with HTML entities (the case)', () => {
|
|
17
|
+
expect(isStaticMarkup('Hello World')).toBe(true);
|
|
18
|
+
expect(isStaticMarkup('a & b   c A')).toBe(true);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it('a single standard element with static attributes', () => {
|
|
22
|
+
expect(isStaticMarkup('<span class="x">hi</span>')).toBe(true);
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
it('nested standard elements', () => {
|
|
26
|
+
expect(isStaticMarkup('<div class="card"><span>Hello World</span></div>')).toBe(true);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it('static attribute value containing a colon (url / style)', () => {
|
|
30
|
+
expect(isStaticMarkup('<a href="https://example.com">x</a>')).toBe(true);
|
|
31
|
+
expect(isStaticMarkup('<span style="color:red;margin:0">x</span>')).toBe(true);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it('static attribute value containing @ (email)', () => {
|
|
35
|
+
expect(isStaticMarkup('<span data-mail="a@b.com">x</span>')).toBe(true);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('void elements and self-closing tags', () => {
|
|
39
|
+
expect(isStaticMarkup('line<br/>break<hr>')).toBe(true);
|
|
40
|
+
expect(isStaticMarkup('<img src="x.png" alt="pic">')).toBe(true);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('table fragments', () => {
|
|
44
|
+
expect(isStaticMarkup('<tr><td>a</td><td>b</td></tr>')).toBe(true);
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
it('html comments are inert', () => {
|
|
48
|
+
expect(isStaticMarkup('<span>x</span><!-- a note --><b>y</b>')).toBe(true);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it('single-quoted static attributes', () => {
|
|
52
|
+
expect(isStaticMarkup("<div class='a b'>x</div>")).toBe(true);
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
describe('returns FALSE for dynamic content', () => {
|
|
57
|
+
it('interpolations', () => {
|
|
58
|
+
expect(isStaticMarkup('<span>{{name}}</span>')).toBe(false);
|
|
59
|
+
expect(isStaticMarkup('Hello {{name}}')).toBe(false);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('binding attribute (:)', () => {
|
|
63
|
+
expect(isStaticMarkup('<div :class="x">y</div>')).toBe(false);
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
it('event attribute (@)', () => {
|
|
67
|
+
expect(isStaticMarkup('<button @click="$do()">y</button>')).toBe(false);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it('directive attribute ($)', () => {
|
|
71
|
+
expect(isStaticMarkup('<div $if="cond">y</div>')).toBe(false);
|
|
72
|
+
expect(isStaticMarkup('<li $for="x in items">y</li>')).toBe(false);
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it('dynamic attribute nested deep in an otherwise static tree', () => {
|
|
76
|
+
expect(isStaticMarkup('<div class="a"><span><b :title="t">x</b></span></div>')).toBe(false);
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
describe('returns FALSE for non-standard tags (components / custom / svg)', () => {
|
|
81
|
+
it('custom component (kebab-case)', () => {
|
|
82
|
+
expect(isStaticMarkup('<dashboard-header></dashboard-header>')).toBe(false);
|
|
83
|
+
expect(isStaticMarkup('<div><the-card>x</the-card></div>')).toBe(false);
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it('are-root outlet', () => {
|
|
87
|
+
expect(isStaticMarkup('<are-root id="x"></are-root>')).toBe(false);
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
it('svg elements (need namespace handling)', () => {
|
|
91
|
+
expect(isStaticMarkup('<svg><rect/></svg>')).toBe(false);
|
|
92
|
+
expect(isStaticMarkup('<div><path d="M0 0"/></div>')).toBe(false);
|
|
93
|
+
});
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
describe('edge cases', () => {
|
|
97
|
+
it('empty / falsy content is not an island', () => {
|
|
98
|
+
expect(isStaticMarkup('')).toBe(false);
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
it('unterminated tag bails to the safe path', () => {
|
|
102
|
+
expect(isStaticMarkup('<div class="x"')).toBe(false);
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
it('whitespace-only content is treated as static text', () => {
|
|
106
|
+
expect(isStaticMarkup(' ')).toBe(true);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('STANDARD_HTML_TAGS excludes svg/component tags', () => {
|
|
110
|
+
expect(STANDARD_HTML_TAGS.has('div')).toBe(true);
|
|
111
|
+
expect(STANDARD_HTML_TAGS.has('svg')).toBe(false);
|
|
112
|
+
expect(STANDARD_HTML_TAGS.has('rect')).toBe(false);
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
});
|
package/tsconfig.json
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"@adaas/are-html/instructions/*": ["src/instructions/*"],
|
|
16
16
|
"@adaas/are-html/watchers/*": ["src/watchers/*"],
|
|
17
17
|
"@adaas/are-html/signals/*": ["src/signals/*"],
|
|
18
|
+
"@adaas/are-html/helpers/*": ["src/helpers/*"],
|
|
18
19
|
// Custom Lib Exports
|
|
19
20
|
"@adaas/are-html/style/*": ["src/lib/AreStyle/*"],
|
|
20
21
|
"@adaas/are-html/directive/*": ["src/lib/AreDirective/*"],
|