@baloise/angular-output-target 1.2.5 → 1.2.6
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/CHANGELOG.md +11 -0
- package/dist/generate-angular-module.js +2 -2
- package/dist/index.cjs.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [1.2.6](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.5...@baloise/angular-output-target@1.2.6) (2022-03-09)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **angular:** export directives ([317dc94](https://github.com/baloise/stencil-ds-output-targets/commit/317dc94636c6b01930ec849ea810ca0eff2c9a33))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [1.2.5](https://github.com/baloise/stencil-ds-output-targets/compare/@baloise/angular-output-target@1.2.4...@baloise/angular-output-target@1.2.5) (2022-03-07)
|
7
18
|
|
8
19
|
|
@@ -42,9 +42,9 @@ ${declarationImports.join('\n ')}
|
|
42
42
|
|
43
43
|
@NgModule({
|
44
44
|
declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
45
|
-
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
46
|
-
providers: [${providers.join(', ')}],
|
47
45
|
imports: [BalSharedModule],
|
46
|
+
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
|
47
|
+
providers: [${providers.join(', ')}],
|
48
48
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
49
49
|
})
|
50
50
|
export class ${tagNameAsPascal}Module {
|
package/dist/index.cjs.js
CHANGED
@@ -278,9 +278,9 @@ ${declarationImports.join('\n ')}
|
|
278
278
|
|
279
279
|
@NgModule({
|
280
280
|
declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
281
|
-
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
282
|
-
providers: [${providers.join(', ')}],
|
283
281
|
imports: [BalSharedModule],
|
282
|
+
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
|
283
|
+
providers: [${providers.join(', ')}],
|
284
284
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
285
285
|
})
|
286
286
|
export class ${tagNameAsPascal}Module {
|
package/dist/index.js
CHANGED
@@ -269,9 +269,9 @@ ${declarationImports.join('\n ')}
|
|
269
269
|
|
270
270
|
@NgModule({
|
271
271
|
declarations: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
272
|
-
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}],
|
273
|
-
providers: [${providers.join(', ')}],
|
274
272
|
imports: [BalSharedModule],
|
273
|
+
exports: [${[tagNameAsPascal, ...cmpImports, ...declarations].join(', ')}, BalSharedModule],
|
274
|
+
providers: [${providers.join(', ')}],
|
275
275
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
276
276
|
})
|
277
277
|
export class ${tagNameAsPascal}Module {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@baloise/angular-output-target",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.6",
|
4
4
|
"description": "Angular output target for @stencil/core components.",
|
5
5
|
"main": "dist/index.cjs.js",
|
6
6
|
"module": "dist/index.js",
|
@@ -61,5 +61,5 @@
|
|
61
61
|
],
|
62
62
|
"testURL": "http://localhost"
|
63
63
|
},
|
64
|
-
"gitHead": "
|
64
|
+
"gitHead": "b4ff587844c9a130f9dd7b165848fdc184d212df"
|
65
65
|
}
|