ngx-essentials-schematics 0.0.9 → 0.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-essentials-schematics",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A collection of Angular schematics for essential functionalities.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -61,7 +61,7 @@ function signalStore(options) {
61
61
  const indexPath = (0, core_1.join)(movePath, "index.ts");
62
62
  const nameDash = core_1.strings.dasherize(options.name);
63
63
  const entityName = core_1.strings.classify(options.name);
64
- const entityHeader = `/** ${entityName.toUpperCase()} **/`;
64
+ const entityHeader = `/* ${entityName.toUpperCase()} */`;
65
65
  const exportBlock = [
66
66
  entityHeader,
67
67
  `export * from './${nameDash}/${nameDash}.model';`,