@stencil/angular-output-target 1.3.0 → 1.3.1
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/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/output-angular.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1030,7 +1030,7 @@ function generateBarrelFile(components, outputTarget) {
|
|
|
1030
1030
|
.map((component) => {
|
|
1031
1031
|
const pascalName = dashToPascalCase(component.tagName);
|
|
1032
1032
|
const moduleExport = includeSingleComponentAngularModules ? `, ${pascalName}Module` : '';
|
|
1033
|
-
return `export { ${pascalName}${moduleExport} } from './${component.tagName}
|
|
1033
|
+
return `export { ${pascalName}${moduleExport} } from './${component.tagName}';`;
|
|
1034
1034
|
})
|
|
1035
1035
|
.join('\n');
|
|
1036
1036
|
return header + exports + '\n';
|
package/dist/index.js
CHANGED
|
@@ -1022,7 +1022,7 @@ function generateBarrelFile(components, outputTarget) {
|
|
|
1022
1022
|
.map((component) => {
|
|
1023
1023
|
const pascalName = dashToPascalCase(component.tagName);
|
|
1024
1024
|
const moduleExport = includeSingleComponentAngularModules ? `, ${pascalName}Module` : '';
|
|
1025
|
-
return `export { ${pascalName}${moduleExport} } from './${component.tagName}
|
|
1025
|
+
return `export { ${pascalName}${moduleExport} } from './${component.tagName}';`;
|
|
1026
1026
|
})
|
|
1027
1027
|
.join('\n');
|
|
1028
1028
|
return header + exports + '\n';
|
package/dist/output-angular.js
CHANGED
|
@@ -268,7 +268,7 @@ export function generateBarrelFile(components, outputTarget) {
|
|
|
268
268
|
.map((component) => {
|
|
269
269
|
const pascalName = dashToPascalCase(component.tagName);
|
|
270
270
|
const moduleExport = includeSingleComponentAngularModules ? `, ${pascalName}Module` : '';
|
|
271
|
-
return `export { ${pascalName}${moduleExport} } from './${component.tagName}
|
|
271
|
+
return `export { ${pascalName}${moduleExport} } from './${component.tagName}';`;
|
|
272
272
|
})
|
|
273
273
|
.join('\n');
|
|
274
274
|
return header + exports + '\n';
|