@o3r/core 12.3.0-prerelease.4 → 12.3.0-prerelease.41

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.
Files changed (91) hide show
  1. package/package.json +5 -5
  2. package/schematics/component/container/schema.d.ts +1 -1
  3. package/schematics/component/container/schema.d.ts.map +1 -1
  4. package/schematics/component/container/schema.json +1 -1
  5. package/schematics/component/index.d.ts.map +1 -1
  6. package/schematics/component/index.js +1 -0
  7. package/schematics/component/presenter/schema.d.ts +1 -1
  8. package/schematics/component/presenter/schema.d.ts.map +1 -1
  9. package/schematics/component/presenter/schema.json +1 -1
  10. package/schematics/component/schema.d.ts +1 -1
  11. package/schematics/component/schema.d.ts.map +1 -1
  12. package/schematics/component/schema.json +1 -1
  13. package/schematics/context-to-component/schema.d.ts +1 -1
  14. package/schematics/context-to-component/schema.d.ts.map +1 -1
  15. package/schematics/context-to-component/schema.json +1 -1
  16. package/schematics/convert-component/schema.d.ts +1 -1
  17. package/schematics/convert-component/schema.d.ts.map +1 -1
  18. package/schematics/convert-component/schema.json +1 -1
  19. package/schematics/ng-add/schema.d.ts +1 -1
  20. package/schematics/ng-add/schema.d.ts.map +1 -1
  21. package/schematics/ng-add/schema.json +1 -1
  22. package/schematics/ng-add-create/templates/schematics/ng-add/schema.json.template +1 -1
  23. package/schematics/ng-add-create/templates/schematics/ng-add/schema.ts.template +1 -1
  24. package/schematics/page/schema.d.ts +1 -1
  25. package/schematics/page/schema.d.ts.map +1 -1
  26. package/schematics/page/schema.json +1 -1
  27. package/schematics/schematics-update/schema.d.ts +1 -1
  28. package/schematics/schematics-update/schema.d.ts.map +1 -1
  29. package/schematics/schematics-update/schema.json +1 -1
  30. package/schematics/service/schema.d.ts +1 -1
  31. package/schematics/service/schema.d.ts.map +1 -1
  32. package/schematics/service/schema.json +1 -1
  33. package/schematics/store/common/schema.d.ts +1 -1
  34. package/schematics/store/common/schema.d.ts.map +1 -1
  35. package/schematics/store/entity-async/schema.json +1 -1
  36. package/schematics/store/entity-sync/index.d.ts.map +1 -1
  37. package/schematics/store/entity-sync/index.js +2 -0
  38. package/schematics/store/entity-sync/schema.json +1 -1
  39. package/schematics/store/schema.d.ts +1 -1
  40. package/schematics/store/schema.d.ts.map +1 -1
  41. package/schematics/store/schema.json +1 -1
  42. package/schematics/store/simple-async/schema.json +1 -1
  43. package/schematics/store/simple-sync/index.d.ts.map +1 -1
  44. package/schematics/store/simple-sync/index.js +2 -0
  45. package/schematics/store/simple-sync/schema.d.ts +1 -1
  46. package/schematics/store/simple-sync/schema.d.ts.map +1 -1
  47. package/schematics/store/simple-sync/schema.json +1 -1
  48. package/schematics/store-action/schema.d.ts +1 -1
  49. package/schematics/store-action/schema.d.ts.map +1 -1
  50. package/schematics/store-action/schema.json +1 -1
  51. /package/schematics/component/templates/{fixtures.ts → fixtures.ts.template} +0 -0
  52. /package/schematics/component/templates/{index.ts → index.ts.template} +0 -0
  53. /package/schematics/service/templates/base/__name__/__featureName__/{__name__.__featureName__.module.ts → __name__.__featureName__.module.ts.template} +0 -0
  54. /package/schematics/service/templates/base/__name__/__featureName__/{__name__.__featureName__.service.spec.ts → __name__.__featureName__.service.spec.ts.template} +0 -0
  55. /package/schematics/service/templates/base/__name__/__featureName__/{__name__.__featureName__.service.ts → __name__.__featureName__.service.ts.template} +0 -0
  56. /package/schematics/service/templates/base/__name__/__featureName__/{index.ts → index.ts.template} +0 -0
  57. /package/schematics/service/templates/base/__name__/{index.ts → index.ts.template} +0 -0
  58. /package/schematics/service/templates/jasmine-core/__name__/fixture/jasmine/{__name__.__featureName__.fixture.jasmine.ts → __name__.__featureName__.fixture.jasmine.ts.template} +0 -0
  59. /package/schematics/service/templates/jasmine-core/__name__/fixture/jasmine/{index.ts → index.ts.template} +0 -0
  60. /package/schematics/service/templates/jest/__name__/fixture/jest/{__name__.__featureName__.fixture.jest.ts → __name__.__featureName__.fixture.jest.ts.template} +0 -0
  61. /package/schematics/service/templates/jest/__name__/fixture/jest/{index.ts → index.ts.template} +0 -0
  62. /package/schematics/store/common/templates/{__storeName@dasherize__.module.ts → __storeName@dasherize__.module.ts.template} +0 -0
  63. /package/schematics/store/common/templates/{index.ts → index.ts.template} +0 -0
  64. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.effect.spec.ts → __storeName@dasherize__.effect.spec.ts.template} +0 -0
  65. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.reducer.spec.ts → __storeName@dasherize__.reducer.spec.ts.template} +0 -0
  66. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.reducer.ts → __storeName@dasherize__.reducer.ts.template} +0 -0
  67. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.selectors.spec.ts → __storeName@dasherize__.selectors.spec.ts.template} +0 -0
  68. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.selectors.ts → __storeName@dasherize__.selectors.ts.template} +0 -0
  69. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.state.ts → __storeName@dasherize__.state.ts.template} +0 -0
  70. /package/schematics/store/entity-async/templates/{__storeName@dasherize__.sync.ts → __storeName@dasherize__.sync.ts.template} +0 -0
  71. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.actions.ts → __storeName@dasherize__.actions.ts.template} +0 -0
  72. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.reducer.spec.ts → __storeName@dasherize__.reducer.spec.ts.template} +0 -0
  73. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.reducer.ts → __storeName@dasherize__.reducer.ts.template} +0 -0
  74. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.selectors.spec.ts → __storeName@dasherize__.selectors.spec.ts.template} +0 -0
  75. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.selectors.ts → __storeName@dasherize__.selectors.ts.template} +0 -0
  76. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.state.ts → __storeName@dasherize__.state.ts.template} +0 -0
  77. /package/schematics/store/entity-sync/templates/{__storeName@dasherize__.sync.ts → __storeName@dasherize__.sync.ts.template} +0 -0
  78. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.effect.spec.ts → __storeName@dasherize__.effect.spec.ts.template} +0 -0
  79. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.reducer.spec.ts → __storeName@dasherize__.reducer.spec.ts.template} +0 -0
  80. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.reducer.ts → __storeName@dasherize__.reducer.ts.template} +0 -0
  81. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.selectors.spec.ts → __storeName@dasherize__.selectors.spec.ts.template} +0 -0
  82. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.selectors.ts → __storeName@dasherize__.selectors.ts.template} +0 -0
  83. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.state.ts → __storeName@dasherize__.state.ts.template} +0 -0
  84. /package/schematics/store/simple-async/templates/{__storeName@dasherize__.sync.ts → __storeName@dasherize__.sync.ts.template} +0 -0
  85. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.actions.ts → __storeName@dasherize__.actions.ts.template} +0 -0
  86. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.reducer.spec.ts → __storeName@dasherize__.reducer.spec.ts.template} +0 -0
  87. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.reducer.ts → __storeName@dasherize__.reducer.ts.template} +0 -0
  88. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.selectors.spec.ts → __storeName@dasherize__.selectors.spec.ts.template} +0 -0
  89. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.selectors.ts → __storeName@dasherize__.selectors.ts.template} +0 -0
  90. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.state.ts → __storeName@dasherize__.state.ts.template} +0 -0
  91. /package/schematics/store/simple-sync/templates/{__storeName@dasherize__.sync.ts → __storeName@dasherize__.sync.ts.template} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o3r/core",
3
- "version": "12.3.0-prerelease.4",
3
+ "version": "12.3.0-prerelease.41",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,7 +39,7 @@
39
39
  "@ngrx/entity": "^19.0.0",
40
40
  "@ngrx/store": "^19.0.0",
41
41
  "@nx/angular": "~20.7.0",
42
- "@o3r/telemetry": "^12.3.0-prerelease.4",
42
+ "@o3r/telemetry": "^12.3.0-prerelease.41",
43
43
  "@schematics/angular": "^19.0.0",
44
44
  "chokidar": "^4.0.3",
45
45
  "globby": "^11.1.0",
@@ -78,7 +78,7 @@
78
78
  }
79
79
  },
80
80
  "dependencies": {
81
- "@o3r/schematics": "^12.3.0-prerelease.4",
81
+ "@o3r/schematics": "^12.3.0-prerelease.41",
82
82
  "tslib": "^2.6.2",
83
83
  "uuid": "^11.0.5"
84
84
  },
@@ -91,14 +91,14 @@
91
91
  "@ngrx/store": "~19.1.0",
92
92
  "@ngrx/store-devtools": "~19.1.0",
93
93
  "@nx/eslint-plugin": "~20.7.0",
94
- "@o3r/store-sync": "^12.3.0-prerelease.4",
94
+ "@o3r/store-sync": "^12.3.0-prerelease.41",
95
95
  "@stylistic/eslint-plugin": "~3.1.0",
96
96
  "@types/jest": "~29.5.2",
97
97
  "@typescript-eslint/eslint-plugin": "~8.29.0",
98
98
  "@typescript-eslint/parser": "~8.29.0",
99
99
  "angular-eslint": "~19.3.0",
100
100
  "cpy-cli": "^5.0.0",
101
- "eslint": "~9.23.0",
101
+ "eslint": "~9.24.0",
102
102
  "eslint-import-resolver-node": "~0.3.9",
103
103
  "eslint-import-resolver-typescript": "~3.10.0",
104
104
  "eslint-plugin-import": "~2.31.0",
@@ -20,7 +20,7 @@ export interface NgGenerateComponentContainerSchematicsSchema extends SchematicO
20
20
  useContext?: boolean | undefined;
21
21
  /** Indicates if the component should use rules-engine */
22
22
  useRulesEngine?: boolean | undefined;
23
- /** Skip the linter process */
23
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
24
24
  skipLinter: boolean;
25
25
  /** Whether the generated component is standalone */
26
26
  standalone: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/component/container/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,4CAA6C,SAAQ,qBAAqB;IACzF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,MAAM,GAAG,WAAW,CAAC;IAEzC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,yDAAyD;IACzD,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/component/container/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,4CAA6C,SAAQ,qBAAqB;IACzF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,MAAM,GAAG,WAAW,CAAC;IAEzC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,yDAAyD;IACzD,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "skipLinter": {
63
63
  "type": "boolean",
64
- "description": "Skip the linter process",
64
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
65
65
  "default": false
66
66
  },
67
67
  "standalone": {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/component/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAOL,IAAI,EAML,MAAM,4BAA4B,CAAC;AA2HpC;;;GAGG;AACH,eAAO,MAAM,mBAAmB,wBAA8C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/component/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAQL,IAAI,EAML,MAAM,4BAA4B,CAAC;AA4HpC;;;GAGG;AACH,eAAO,MAAM,mBAAmB,wBAA8C,CAAC"}
@@ -93,6 +93,7 @@ function ngGenerateComponentFn(options) {
93
93
  folderName,
94
94
  generateComponentIndex: true
95
95
  }),
96
+ (0, schematics_1.renameTemplateFiles)(),
96
97
  (0, schematics_1.move)(componentDestination)
97
98
  ]), schematics_1.MergeStrategy.Overwrite)(tree, context);
98
99
  };
@@ -27,7 +27,7 @@ export interface NgGenerateComponentPresenterSchematicsSchema extends SchematicO
27
27
  useContext?: boolean | undefined;
28
28
  /** Determine if the dummy IO should be generated */
29
29
  activateDummy: boolean;
30
- /** Skip the linter process */
30
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
31
31
  skipLinter: boolean;
32
32
  /** Whether the generated component is standalone */
33
33
  standalone: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/component/presenter/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAE7B,MAAM,WAAW,4CAA6C,SAAQ,qBAAqB;IACzF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,uEAAuE;IACvE,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEtC,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yEAAyE;IACzE,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAExC,yDAAyD;IACzD,eAAe,EAAE,OAAO,CAAC;IAEzB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,oDAAoD;IACpD,aAAa,EAAE,OAAO,CAAC;IAEvB,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/component/presenter/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAE7B,MAAM,WAAW,4CAA6C,SAAQ,qBAAqB;IACzF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,uEAAuE;IACvE,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEtC,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yEAAyE;IACzE,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAExC,yDAAyD;IACzD,eAAe,EAAE,OAAO,CAAC;IAEzB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,oDAAoD;IACpD,aAAa,EAAE,OAAO,CAAC;IAEvB,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -75,7 +75,7 @@
75
75
  },
76
76
  "skipLinter": {
77
77
  "type": "boolean",
78
- "description": "Skip the linter process",
78
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
79
79
  "default": false
80
80
  },
81
81
  "standalone": {
@@ -31,7 +31,7 @@ export interface NgGenerateComponentSchematicsSchema extends SchematicOptionObje
31
31
  activateDummy: boolean;
32
32
  /** Generate component with Otter analytics architecture */
33
33
  useOtterAnalytics?: boolean | undefined;
34
- /** Skip the linter process */
34
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
35
35
  skipLinter: boolean;
36
36
  /** Whether the generated component is standalone */
37
37
  standalone: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAE5B,MAAM,WAAW,mCAAoC,SAAQ,qBAAqB;IAChF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,uEAAuE;IACvE,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEtC,wEAAwE;IACxE,mBAAmB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE1C,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yDAAyD;IACzD,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yDAAyD;IACzD,eAAe,EAAE,OAAO,CAAC;IAEzB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,oDAAoD;IACpD,aAAa,EAAE,OAAO,CAAC;IAEvB,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAExC,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAE5B,MAAM,WAAW,mCAAoC,SAAQ,qBAAqB;IAChF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IAEtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,0BAA0B;IAC1B,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,0DAA0D;IAC1D,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE3C,uEAAuE;IACvE,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEtC,wEAAwE;IACxE,mBAAmB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAE1C,gEAAgE;IAChE,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yDAAyD;IACzD,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAErC,yDAAyD;IACzD,eAAe,EAAE,OAAO,CAAC;IAEzB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC,oDAAoD;IACpD,aAAa,EAAE,OAAO,CAAC;IAEvB,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAExC,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -71,7 +71,7 @@
71
71
  },
72
72
  "skipLinter": {
73
73
  "type": "boolean",
74
- "description": "Skip the linter process",
74
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
75
75
  "default": false
76
76
  },
77
77
  "activateDummy": {
@@ -2,7 +2,7 @@ import type { SchematicOptionObject } from '@o3r/schematics';
2
2
  export interface NgAddConfigSchematicsSchema extends SchematicOptionObject {
3
3
  /** Path to the component */
4
4
  path: string;
5
- /** Skip the linter process */
5
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
6
6
  skipLinter: boolean;
7
7
  }
8
8
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/context-to-component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,2BAA4B,SAAQ,qBAAqB;IACxE,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IAEb,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/context-to-component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,2BAA4B,SAAQ,qBAAqB;IACxE,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IAEb,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "skipLinter": {
12
12
  "type": "boolean",
13
- "description": "Skip the linter process",
13
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
14
14
  "default": false
15
15
  }
16
16
  },
@@ -3,7 +3,7 @@ import type { ComponentType } from '@o3r/core';
3
3
  export interface ConvertToO3rComponentSchematicsSchema extends SchematicOptionObject {
4
4
  /** Path to the component to convert */
5
5
  path: string;
6
- /** Skip the linter process */
6
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
7
7
  skipLinter: boolean;
8
8
  /** Type of the component */
9
9
  componentType: ComponentType;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/convert-component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,aAAa,EACd,MAAM,WAAW,CAAC;AAEnB,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,uCAAuC;IACvC,IAAI,EAAE,MAAM,CAAC;IAEb,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,4BAA4B;IAC5B,aAAa,EAAE,aAAa,CAAC;CAC9B"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/convert-component/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EACV,aAAa,EACd,MAAM,WAAW,CAAC;AAEnB,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,uCAAuC;IACvC,IAAI,EAAE,MAAM,CAAC;IAEb,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,4BAA4B;IAC5B,aAAa,EAAE,aAAa,CAAC;CAC9B"}
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "skipLinter": {
12
12
  "type": "boolean",
13
- "description": "Skip the linter process",
13
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
14
14
  "default": false
15
15
  },
16
16
  "componentType": {
@@ -7,7 +7,7 @@ export interface NgAddSchematicsSchema extends SchematicOptionObject {
7
7
  externalPresets?: string | undefined;
8
8
  /** Project name */
9
9
  projectName?: string | undefined;
10
- /** Skip the linter process */
10
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
11
11
  skipLinter: boolean;
12
12
  /** Skip the install process */
13
13
  skipInstall: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC;AAElE,MAAM,WAAW,qBAAsB,SAAQ,qBAAqB;IAClE,qDAAqD;IACrD,MAAM,EAAE,WAAW,CAAC;IAEpB,kEAAkE;IAClE,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAErC,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,+BAA+B;IAC/B,WAAW,EAAE,OAAO,CAAC;IAErB,iDAAiD;IACjD,MAAM,EAAE,OAAO,GAAG;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAElD,0CAA0C;IAC1C,OAAO,EAAE,OAAO,CAAC;IAEjB,8DAA8D;IAC9D,WAAW,EAAE,OAAO,CAAC;IAErB,sEAAsE;IACtE,YAAY,EAAE,OAAO,CAAC;IAEtB,8CAA8C;IAC9C,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC;AAElE,MAAM,WAAW,qBAAsB,SAAQ,qBAAqB;IAClE,qDAAqD;IACrD,MAAM,EAAE,WAAW,CAAC;IAEpB,kEAAkE;IAClE,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAErC,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,+BAA+B;IAC/B,WAAW,EAAE,OAAO,CAAC;IAErB,iDAAiD;IACjD,MAAM,EAAE,OAAO,GAAG;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAElD,0CAA0C;IAC1C,OAAO,EAAE,OAAO,CAAC;IAEjB,8DAA8D;IAC9D,WAAW,EAAE,OAAO,CAAC;IAErB,sEAAsE;IACtE,YAAY,EAAE,OAAO,CAAC;IAEtB,8CAA8C;IAC9C,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B"}
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "skipLinter": {
40
40
  "type": "boolean",
41
- "description": "Skip the linter process",
41
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
42
42
  "default": true
43
43
  },
44
44
  "skipInstall": {
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "skipLinter": {
15
15
  "type": "boolean",
16
- "description": "Skip the linter process",
16
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
17
17
  "default": true
18
18
  },
19
19
  "skipInstall": {
@@ -4,7 +4,7 @@ export interface NgAddSchematicsSchema extends SchematicOptionObject {
4
4
  /** Project name */
5
5
  projectName: string | undefined;
6
6
 
7
- /** Skip the linter process */
7
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
8
8
  skipLinter: boolean;
9
9
 
10
10
  /** Skip the install process */
@@ -12,7 +12,7 @@ export interface NgGeneratePageSchematicsSchema extends SchematicOptionObject {
12
12
  prefix?: string | undefined;
13
13
  /** Directory containing the pages */
14
14
  path?: string | undefined;
15
- /** Skip the linter process */
15
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
16
16
  skipLinter: boolean;
17
17
  /** Indicates if the page should use otter theming architecture */
18
18
  useOtterTheming: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/page/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,8BAA+B,SAAQ,qBAAqB;IAC3E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,gBAAgB;IAChB,IAAI,EAAE,MAAM,CAAC;IAEb,iBAAiB;IACjB,KAAK,EAAE,MAAM,CAAC;IAEd,sCAAsC;IACtC,oBAAoB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1C,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IAEpB,kEAAkE;IAClE,eAAe,EAAE,OAAO,CAAC;IAEzB,2DAA2D;IAC3D,cAAc,EAAE,OAAO,CAAC;IAExB,oDAAoD;IACpD,eAAe,EAAE,OAAO,CAAC;IAEzB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;IAEpB,uCAAuC;IACvC,eAAe,EAAE,OAAO,CAAC;IAEzB,4BAA4B;IAC5B,aAAa,EAAE,OAAO,CAAC;CACxB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/page/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,8BAA+B,SAAQ,qBAAqB;IAC3E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,gBAAgB;IAChB,IAAI,EAAE,MAAM,CAAC;IAEb,iBAAiB;IACjB,KAAK,EAAE,MAAM,CAAC;IAEd,sCAAsC;IACtC,oBAAoB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1C,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;IAEpB,kEAAkE;IAClE,eAAe,EAAE,OAAO,CAAC;IAEzB,2DAA2D;IAC3D,cAAc,EAAE,OAAO,CAAC;IAExB,oDAAoD;IACpD,eAAe,EAAE,OAAO,CAAC;IAEzB,oDAAoD;IACpD,UAAU,EAAE,OAAO,CAAC;IAEpB,uCAAuC;IACvC,eAAe,EAAE,OAAO,CAAC;IAEzB,4BAA4B;IAC5B,aAAa,EAAE,OAAO,CAAC;CACxB"}
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "skipLinter": {
42
42
  "type": "boolean",
43
- "description": "Skip the linter process",
43
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
44
44
  "default": false
45
45
  },
46
46
  "useOtterTheming": {
@@ -6,7 +6,7 @@ export interface NgGenerateUpdateSchematicsSchema extends SchematicOptionObject
6
6
  version: string;
7
7
  /** Source directory containing the schematics */
8
8
  path?: string | undefined;
9
- /** Skip the linter process */
9
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
10
10
  skipLinter: boolean;
11
11
  }
12
12
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/schematics-update/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,gCAAiC,SAAQ,qBAAqB;IAC7E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,oCAAoC;IACpC,OAAO,EAAE,MAAM,CAAC;IAEhB,iDAAiD;IACjD,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/schematics-update/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,gCAAiC,SAAQ,qBAAqB;IAC7E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,oCAAoC;IACpC,OAAO,EAAE,MAAM,CAAC;IAEhB,iDAAiD;IACjD,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "skipLinter": {
29
29
  "type": "boolean",
30
- "description": "Skip the linter process",
30
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
31
31
  "default": false,
32
32
  "x-prompt": "Skip linter process on generated files?"
33
33
  }
@@ -8,7 +8,7 @@ export interface NgGenerateServiceSchematicsSchema extends SchematicOptionObject
8
8
  featureName: string;
9
9
  /** Directory containing the services */
10
10
  path?: string | undefined;
11
- /** Skip the linter process */
11
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
12
12
  skipLinter: boolean;
13
13
  }
14
14
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/service/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,iCAAkC,SAAQ,qBAAqB;IAC9E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IAEb,kCAAkC;IAClC,WAAW,EAAE,MAAM,CAAC;IAEpB,wCAAwC;IACxC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/service/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,iCAAkC,SAAQ,qBAAqB;IAC9E,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IAEb,kCAAkC;IAClC,WAAW,EAAE,MAAM,CAAC;IAEpB,wCAAwC;IACxC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "skipLinter": {
35
35
  "type": "boolean",
36
- "description": "Skip the linter process",
36
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
37
37
  "default": false
38
38
  }
39
39
  },
@@ -13,7 +13,7 @@ export interface NgGenerateCommonStoreSchematicsSchema extends SchematicOptionOb
13
13
  sdkPackage: string;
14
14
  /** The SDK Model to use as store item (e.g. Example) */
15
15
  modelName: string;
16
- /** Skip the linter process */
16
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
17
17
  skipLinter: boolean;
18
18
  }
19
19
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/store/common/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,kBAAkB;IAClB,UAAU,EAAE,MAAM,CAAC;IAEnB,wDAAwD;IACxD,SAAS,EAAE,MAAM,CAAC;IAElB,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/store/common/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,kBAAkB;IAClB,UAAU,EAAE,MAAM,CAAC;IAEnB,wDAAwD;IACxD,SAAS,EAAE,MAAM,CAAC;IAElB,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "skipLinter": {
47
47
  "type": "boolean",
48
- "description": "Skip the linter process",
48
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
49
49
  "default": false
50
50
  },
51
51
  "testFramework": {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/store/entity-sync/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAOL,IAAI,EAKL,MAAM,4BAA4B,CAAC;AAsFpC;;;GAGG;AACH,eAAO,MAAM,yBAAyB,wBAAoD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/store/entity-sync/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAQL,IAAI,EAKL,MAAM,4BAA4B,CAAC;AAwFpC;;;GAGG;AACH,eAAO,MAAM,yBAAyB,wBAAoD,CAAC"}
@@ -48,6 +48,7 @@ function ngGenerateEntitySyncStoreFn(options) {
48
48
  ...formattedProperties,
49
49
  currentStoreIndex
50
50
  }),
51
+ (0, schematics_1.renameTemplateFiles)(),
51
52
  (0, schematics_1.move)(`${destination}/${core_1.strings.dasherize(options.storeName)}`)
52
53
  ]), schematics_1.MergeStrategy.Overwrite), (0, schematics_1.mergeWith)((0, schematics_1.apply)(syncEntityTemplates, [
53
54
  (0, schematics_1.template)({
@@ -56,6 +57,7 @@ function ngGenerateEntitySyncStoreFn(options) {
56
57
  ...formattedProperties,
57
58
  currentStoreIndex
58
59
  }),
60
+ (0, schematics_1.renameTemplateFiles)(),
59
61
  (0, schematics_1.move)(`${destination}/${core_1.strings.dasherize(options.storeName)}`)
60
62
  ]), schematics_1.MergeStrategy.Overwrite));
61
63
  if ((0, schematics_2.moduleHasSubEntryPoints)(tree, destination)) {
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "skipLinter": {
47
47
  "type": "boolean",
48
- "description": "Skip the linter process",
48
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
49
49
  "default": false
50
50
  }
51
51
  },
@@ -13,7 +13,7 @@ export interface NgGenerateStoreBaseSchematicsSchema extends SchematicOptionObje
13
13
  projectName?: string | undefined;
14
14
  /** Store name */
15
15
  storeType: 'entity-async' | 'simple-async' | 'entity-sync' | 'simple-sync';
16
- /** Skip the linter process */
16
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
17
17
  skipLinter: boolean;
18
18
  }
19
19
  type Nullable<T> = {
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/store/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,0CAA0C,EAC3C,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,yCAAyC,EAC1C,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,0CAA0C,EAC3C,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,yCAAyC,EAC1C,MAAM,sBAAsB,CAAC;AAE9B;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,qBAAqB;IAChF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,cAAc,GAAG,cAAc,GAAG,aAAa,GAAG,aAAa,CAAC;IAE3E,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,KAAK,QAAQ,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,SAAS;CAAE,CAAC;AAExD;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAAG,mCAAmC,GAC/E,QAAQ,CAAC,0CAA0C,CAAC,GACpD,QAAQ,CAAC,0CAA0C,CAAC,GACpD,QAAQ,CAAC,yCAAyC,CAAC,GACnD,QAAQ,CAAC,yCAAyC,CAAC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/store/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,0CAA0C,EAC3C,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,yCAAyC,EAC1C,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,0CAA0C,EAC3C,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,yCAAyC,EAC1C,MAAM,sBAAsB,CAAC;AAE9B;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,qBAAqB;IAChF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,cAAc,GAAG,cAAc,GAAG,aAAa,GAAG,aAAa,CAAC;IAE3E,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,KAAK,QAAQ,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,SAAS;CAAE,CAAC;AAExD;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAAG,mCAAmC,GAC/E,QAAQ,CAAC,0CAA0C,CAAC,GACpD,QAAQ,CAAC,0CAA0C,CAAC,GACpD,QAAQ,CAAC,yCAAyC,CAAC,GACnD,QAAQ,CAAC,yCAAyC,CAAC,CAAC"}
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "skipLinter": {
34
34
  "type": "boolean",
35
- "description": "Skip the linter process",
35
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
36
36
  "default": false
37
37
  },
38
38
 
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "skipLinter": {
40
40
  "type": "boolean",
41
- "description": "Skip the linter process",
41
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
42
42
  "default": false
43
43
  },
44
44
  "testFramework": {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/store/simple-sync/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAOL,IAAI,EAKL,MAAM,4BAA4B,CAAC;AA6EpC,eAAO,MAAM,yBAAyB,wBAAoD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/store/simple-sync/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAQL,IAAI,EAKL,MAAM,4BAA4B,CAAC;AA+EpC,eAAO,MAAM,yBAAyB,wBAAoD,CAAC"}
@@ -39,6 +39,7 @@ function ngGenerateSimpleSyncStoreFn(options) {
39
39
  ...formattedProperties,
40
40
  currentStoreIndex
41
41
  }),
42
+ (0, schematics_1.renameTemplateFiles)(),
42
43
  (0, schematics_1.move)(`${destination}/${core_1.strings.dasherize(options.storeName)}`)
43
44
  ]), schematics_1.MergeStrategy.Overwrite), (0, schematics_1.mergeWith)((0, schematics_1.apply)(syncEntityTemplates, [
44
45
  (0, schematics_1.template)({
@@ -47,6 +48,7 @@ function ngGenerateSimpleSyncStoreFn(options) {
47
48
  ...formattedProperties,
48
49
  currentStoreIndex
49
50
  }),
51
+ (0, schematics_1.renameTemplateFiles)(),
50
52
  (0, schematics_1.move)(`${destination}/${core_1.strings.dasherize(options.storeName)}`)
51
53
  ]), schematics_1.MergeStrategy.Overwrite));
52
54
  if ((0, schematics_2.moduleHasSubEntryPoints)(tree, destination)) {
@@ -9,7 +9,7 @@ export interface NgGenerateSimpleSyncStoreSchematicsSchema extends SchematicOpti
9
9
  projectName?: string | undefined;
10
10
  /** Store name */
11
11
  storeName: string;
12
- /** Skip the linter process */
12
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
13
13
  skipLinter: boolean;
14
14
  }
15
15
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/store/simple-sync/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,MAAM,WAAW,yCAA0C,SAAQ,qBAAqB;IACtF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../schematics/store/simple-sync/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB;;GAEG;AACH,MAAM,WAAW,yCAA0C,SAAQ,qBAAqB;IACtF,sCAAsC;IACtC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,iBAAiB;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "skipLinter": {
29
29
  "type": "boolean",
30
- "description": "Skip the linter process",
30
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
31
31
  "default": false
32
32
  }
33
33
  },
@@ -14,7 +14,7 @@ export interface NgGenerateStoreActionSchematicsSchema extends SchematicOptionOb
14
14
  storeDirectory?: string | undefined;
15
15
  /** Description of the action */
16
16
  description?: string | undefined;
17
- /** Skip the linter process */
17
+ /** Skip the linter process which includes the run of EsLint and EditorConfig rules */
18
18
  skipLinter: boolean;
19
19
  }
20
20
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/store-action/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uDAAuD;IACvD,SAAS,EAAE,MAAM,CAAC;IAElB,mCAAmC;IACnC,UAAU,EAAE,MAAM,CAAC;IAEnB,uCAAuC;IACvC,UAAU,EAAE,KAAK,GAAG,cAAc,GAAG,iBAAiB,GAAG,QAAQ,GAAG,iBAAiB,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;IAEtH,8CAA8C;IAC9C,YAAY,EAAE,OAAO,CAAC;IAEtB,sCAAsC;IACtC,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEpC,gCAAgC;IAChC,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;CACrB"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/store-action/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAEzB,MAAM,WAAW,qCAAsC,SAAQ,qBAAqB;IAClF,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,uDAAuD;IACvD,SAAS,EAAE,MAAM,CAAC;IAElB,mCAAmC;IACnC,UAAU,EAAE,MAAM,CAAC;IAEnB,uCAAuC;IACvC,UAAU,EAAE,KAAK,GAAG,cAAc,GAAG,iBAAiB,GAAG,QAAQ,GAAG,iBAAiB,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;IAEtH,8CAA8C;IAC9C,YAAY,EAAE,OAAO,CAAC;IAEtB,sCAAsC;IACtC,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEpC,gCAAgC;IAChC,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,sFAAsF;IACtF,UAAU,EAAE,OAAO,CAAC;CACrB"}
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "skipLinter": {
58
58
  "type": "boolean",
59
- "description": "Skip the linter process",
59
+ "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
60
60
  "default": false
61
61
  }
62
62
  },