Skip to content

Commit 65250e0

Browse files
chore:
1 parent 7e311ed commit 65250e0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

example-project/component-library-angular/projects/library/src/public-api.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ export * from './directives/radio-value-accessor';
1010
export * from './directives/text-value-accessor';
1111
export * from './directives/select-value-accessor';
1212
export * from './directives/value-accessor';
13+
14+
// Re-export transformTag utilities from component-library
15+
export { transformTag, setTagTransformer } from 'component-library';

example-project/component-library/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"moduleResolution": "node",
1212
"module": "esnext",
13-
"target": "es2017",
13+
"target": "es2022",
1414
"noUnusedLocals": true,
1515
"noUnusedParameters": true,
1616
"skipLibCheck": true,

example-project/ng-app/src/app/component-tests/component-tests.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component } from '@angular/core';
2-
import { MyComponent, MyCounter, MyToggle } from 'component-library-angular';
2+
import { MyComponent, MyCounter, MyToggle, MyTransformTest } from 'component-library-angular';
33
import { ButtonTests } from './button-tests/button-tests';
44
import { CheckboxTests } from './checkbox-tests/checkbox-tests';
55
import { ComplexPropsTests } from './complex-props-tests/complex-props-tests';
@@ -13,6 +13,7 @@ import { RangeTests } from './range-tests/range-tests';
1313
MyComponent,
1414
MyCounter,
1515
MyToggle,
16+
MyTransformTest,
1617
CheckboxTests,
1718
InputFormTests,
1819
ButtonTests,

0 commit comments

Comments
 (0)