@o3r/core 12.4.0-prerelease.2 → 12.4.0-prerelease.21

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 (2) hide show
  1. package/collection.json +53 -34
  2. package/package.json +10 -10
package/collection.json CHANGED
@@ -8,101 +8,120 @@
8
8
  "aliases": ["install", "i"]
9
9
  },
10
10
  "ng-add-create": {
11
- "description": "Make project `ng add` compatible",
11
+ "description": "[o3r] Make project `ng add` compatible",
12
12
  "factory": "./schematics/ng-add-create/index#ngAddCreate",
13
- "schema": "./schematics/ng-add-create/schema.json"
13
+ "schema": "./schematics/ng-add-create/schema.json",
14
+ "aliases": [
15
+ "o3r-ng-add-create"
16
+ ]
14
17
  },
15
18
  "page": {
16
- "description": "Generate a page into the project.",
19
+ "description": "[o3r] Generate a page into the project.",
17
20
  "factory": "./schematics/page/index#ngGeneratePage",
18
- "schema": "./schematics/page/schema.json"
21
+ "schema": "./schematics/page/schema.json",
22
+ "aliases": ["o3r-page"]
19
23
  },
20
24
  "component": {
21
- "description": "Generate an Otter component into the project.",
25
+ "description": "[o3r] Generate an Otter component into the project.",
22
26
  "factory": "./schematics/component/index#ngGenerateComponent",
23
- "schema": "./schematics/component/schema.json"
27
+ "schema": "./schematics/component/schema.json",
28
+ "aliases": ["o3r-component"]
24
29
  },
25
30
  "context-to-component": {
26
- "description": "Add Otter Context to an existing component",
31
+ "description": "[o3r] Add Otter Context to an existing component",
27
32
  "factory": "./schematics/context-to-component/index#ngAddContext",
28
33
  "schema": "./schematics/context-to-component/schema.json",
29
- "aliases": ["add-context"]
34
+ "aliases": ["o3r-context-to-component", "add-context"]
30
35
  },
31
36
  "component-container": {
32
- "description": "Generate an Otter container component into the project.",
37
+ "description": "[o3r] Generate an Otter container component into the project.",
33
38
  "factory": "./schematics/component/container/index#ngGenerateComponentContainer",
34
- "schema": "./schematics/component/container/schema.json"
39
+ "schema": "./schematics/component/container/schema.json",
40
+ "aliases": ["o3r-component-container"]
35
41
  },
36
42
  "component-presenter": {
37
- "description": "Generate an Otter presenter component into the project.",
43
+ "description": "[o3r] Generate an Otter presenter component into the project.",
38
44
  "factory": "./schematics/component/presenter/index#ngGenerateComponentPresenter",
39
- "schema": "./schematics/component/presenter/schema.json"
45
+ "schema": "./schematics/component/presenter/schema.json",
46
+ "aliases": ["o3r-component-presenter"]
40
47
  },
41
48
  "service": {
42
- "description": "Generate an Otter service into the project.",
49
+ "description": "[o3r] Generate an Otter service into the project.",
43
50
  "factory": "./schematics/service/index#ngGenerateService",
44
- "schema": "./schematics/service/schema.json"
51
+ "schema": "./schematics/service/schema.json",
52
+ "aliases": ["o3r-service"]
45
53
  },
46
54
  "store": {
47
- "description": "Generate an Otter store into the project.",
55
+ "description": "[o3r] Generate an Otter store into the project.",
48
56
  "factory": "./schematics/store/index#ngGenerateStore",
49
- "schema": "./schematics/store/schema.json"
57
+ "schema": "./schematics/store/schema.json",
58
+ "aliases": ["o3r-store"]
50
59
  },
51
60
  "store-entity-async": {
52
- "description": "Generate an Entity Async Otter Store.",
61
+ "description": "[o3r] Generate an Entity Async Otter Store.",
53
62
  "factory": "./schematics/store/entity-async/index#ngGenerateEntityAsyncStore",
54
- "schema": "./schematics/store/entity-async/schema.json"
63
+ "schema": "./schematics/store/entity-async/schema.json",
64
+ "aliases": ["o3r-store-entity-async"]
55
65
  },
56
66
  "store-entity-sync": {
57
- "description": "Generate an Entity Sync Otter Store.",
67
+ "description": "[o3r] Generate an Entity Sync Otter Store.",
58
68
  "factory": "./schematics/store/entity-sync/index#ngGenerateEntitySyncStore",
59
- "schema": "./schematics/store/entity-sync/schema.json"
69
+ "schema": "./schematics/store/entity-sync/schema.json",
70
+ "aliases": ["o3r-store-entity-sync"]
60
71
  },
61
72
  "store-simple-async": {
62
- "description": "Generate a Simple Async Otter Store.",
73
+ "description": "[o3r] Generate a Simple Async Otter Store.",
63
74
  "factory": "./schematics/store/simple-async/index#ngGenerateSimpleAsyncStore",
64
- "schema": "./schematics/store/simple-async/schema.json"
75
+ "schema": "./schematics/store/simple-async/schema.json",
76
+ "aliases": ["o3r-store-simple-async"]
65
77
  },
66
78
  "store-simple-sync": {
67
- "description": "Generate an Simple Sync Otter Store.",
79
+ "description": "[o3r] Generate an Simple Sync Otter Store.",
68
80
  "factory": "./schematics/store/simple-sync/index#ngGenerateSimpleSyncStore",
69
- "schema": "./schematics/store/simple-sync/schema.json"
81
+ "schema": "./schematics/store/simple-sync/schema.json",
82
+ "aliases": ["o3r-store-simple-sync"]
70
83
  },
71
84
  "store-action": {
72
- "description": "Generate an Otter store action into an existing store.",
85
+ "description": "[o3r] Generate an Otter store action into an existing store.",
73
86
  "factory": "./schematics/store-action/index#ngGenerateStoreAction",
74
- "schema": "./schematics/store-action/schema.json"
87
+ "schema": "./schematics/store-action/schema.json",
88
+ "aliases": ["o3r-store-action"]
75
89
  },
76
90
  "schematics-update": {
77
- "description": "Generate an new ng-update function for the current version",
91
+ "description": "[o3r] Generate an new ng-update function for the current version",
78
92
  "factory": "./schematics/schematics-update/index#ngGenerateUpdate",
79
- "schema": "./schematics/schematics-update/schema.json"
93
+ "schema": "./schematics/schematics-update/schema.json",
94
+ "aliases": ["o3r-schematics-update"]
80
95
  },
81
96
  "renovate-bot": {
82
- "description": "Generate a Renovate basic bot repository",
97
+ "description": "[o3r] Generate a Renovate basic bot repository",
83
98
  "factory": "./schematics/renovate/index#ngGenerateRenovateBotComponent",
84
- "schema": "./schematics/renovate/schema.json"
99
+ "schema": "./schematics/renovate/schema.json",
100
+ "aliases": ["o3r-renovate-bot"]
85
101
  },
86
102
  "show-modules": {
87
- "description": "Show available Otter modules",
103
+ "description": "[o3r] Show available Otter modules",
88
104
  "factory": "./schematics/show-modules/index#ngShowModules",
89
105
  "schema": "./schematics/show-modules/schema.json",
90
106
  "aliases": [
107
+ "o3r-show-modules",
91
108
  "list-modules"
92
109
  ]
93
110
  },
94
111
  "add-modules": {
95
- "description": "Add additional Otter module",
112
+ "description": "[o3r] Add additional Otter module",
96
113
  "factory": "./schematics/add-modules/index#ngAddModules",
97
114
  "schema": "./schematics/add-modules/schema.json",
98
115
  "aliases": [
116
+ "o3r-add-modules",
99
117
  "add-module"
100
118
  ]
101
119
  },
102
120
  "convert-component": {
103
- "description": "Convert an Angular component into an Otter component",
121
+ "description": "[o3r] Convert an Angular component into an Otter component",
104
122
  "factory": "./schematics/convert-component/index#convertToO3rComponent",
105
- "schema": "./schematics/convert-component/schema.json"
123
+ "schema": "./schematics/convert-component/schema.json",
124
+ "aliases": ["o3r-convert-component"]
106
125
  }
107
126
  }
108
127
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o3r/core",
3
- "version": "12.4.0-prerelease.2",
3
+ "version": "12.4.0-prerelease.21",
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.8.0",
42
- "@o3r/telemetry": "^12.4.0-prerelease.2",
42
+ "@o3r/telemetry": "^12.4.0-prerelease.21",
43
43
  "@schematics/angular": "^19.0.0",
44
44
  "chokidar": "^4.0.3",
45
45
  "globby": "^11.1.0",
@@ -78,27 +78,27 @@
78
78
  }
79
79
  },
80
80
  "dependencies": {
81
- "@o3r/schematics": "^12.4.0-prerelease.2",
81
+ "@o3r/schematics": "^12.4.0-prerelease.21",
82
82
  "tslib": "^2.6.2",
83
83
  "uuid": "^11.0.5"
84
84
  },
85
85
  "generatorDependencies": {
86
86
  "@angular/material": "~19.2.0",
87
87
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
88
- "@ngrx/effects": "~19.1.0",
89
- "@ngrx/entity": "~19.1.0",
90
- "@ngrx/router-store": "~19.1.0",
91
- "@ngrx/store": "~19.1.0",
92
- "@ngrx/store-devtools": "~19.1.0",
88
+ "@ngrx/effects": "~19.2.0",
89
+ "@ngrx/entity": "~19.2.0",
90
+ "@ngrx/router-store": "~19.2.0",
91
+ "@ngrx/store": "~19.2.0",
92
+ "@ngrx/store-devtools": "~19.2.0",
93
93
  "@nx/eslint-plugin": "~20.8.0",
94
- "@o3r/store-sync": "^12.4.0-prerelease.2",
94
+ "@o3r/store-sync": "^12.4.0-prerelease.21",
95
95
  "@stylistic/eslint-plugin": "~3.1.0",
96
96
  "@types/jest": "~29.5.2",
97
97
  "@typescript-eslint/eslint-plugin": "~8.32.0",
98
98
  "@typescript-eslint/parser": "~8.32.0",
99
99
  "angular-eslint": "~19.4.0",
100
100
  "cpy-cli": "^5.0.0",
101
- "eslint": "~9.26.0",
101
+ "eslint": "~9.27.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",