@rxap/preset-angular 19.0.5-dev.2 → 19.0.5-dev.4
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
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [19.0.5-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.5-dev.3...@rxap/preset-angular@19.0.5-dev.4) (2024-08-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/preset-angular
|
|
9
|
+
|
|
10
|
+
## [19.0.5-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.5-dev.2...@rxap/preset-angular@19.0.5-dev.3) (2024-08-15)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- update default nx targets ([43f6151](https://gitlab.com/rxap/packages/commit/43f6151292a10218735e5cf203ec3cb169211530))
|
|
15
|
+
|
|
6
16
|
## [19.0.5-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.5-dev.1...@rxap/preset-angular@19.0.5-dev.2) (2024-08-15)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @rxap/preset-angular
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.0.5-dev.
|
|
2
|
+
"version": "19.0.5-dev.4",
|
|
3
3
|
"name": "@rxap/preset-angular",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@nx/devkit": "19.4.2",
|
|
7
|
-
"@rxap/plugin-angular": "^19.3.3-dev.
|
|
8
|
-
"@rxap/plugin-workspace": "^19.1.
|
|
7
|
+
"@rxap/plugin-angular": "^19.3.3-dev.4",
|
|
8
|
+
"@rxap/plugin-workspace": "^19.1.5-dev.0",
|
|
9
9
|
"tslib": "2.6.2"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"schematics": "./generators.json",
|
|
41
41
|
"type": "commonjs",
|
|
42
42
|
"typings": "./src/index.d.ts",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "6dffe27d523b5d32b75ed9931e95ad5c7310d74b"
|
|
44
44
|
}
|
|
@@ -133,9 +133,7 @@ exports[`preset should use angular preset 3`] = `
|
|
|
133
133
|
"^build",
|
|
134
134
|
"readme",
|
|
135
135
|
"check-version",
|
|
136
|
-
"expose-as-schematic"
|
|
137
|
-
"build-tailwind",
|
|
138
|
-
"check-ng-package"
|
|
136
|
+
"expose-as-schematic"
|
|
139
137
|
]
|
|
140
138
|
},
|
|
141
139
|
"lint": {
|
|
@@ -165,6 +163,15 @@ exports[`preset should use angular preset 3`] = `
|
|
|
165
163
|
"generate-open-api": {
|
|
166
164
|
"cache": true
|
|
167
165
|
},
|
|
166
|
+
"@nx/eslint:lint": {
|
|
167
|
+
"inputs": [
|
|
168
|
+
"default",
|
|
169
|
+
"{workspaceRoot}/.eslintrc.json",
|
|
170
|
+
"{workspaceRoot}/.eslintignore",
|
|
171
|
+
"{workspaceRoot}/eslint.config.js"
|
|
172
|
+
],
|
|
173
|
+
"cache": true
|
|
174
|
+
},
|
|
168
175
|
"test": {
|
|
169
176
|
"executor": "@nx/jest:jest",
|
|
170
177
|
"outputs": [
|
|
@@ -188,15 +195,6 @@ exports[`preset should use angular preset 3`] = `
|
|
|
188
195
|
"codeCoverage": true
|
|
189
196
|
}
|
|
190
197
|
},
|
|
191
|
-
"@nx/eslint:lint": {
|
|
192
|
-
"cache": true,
|
|
193
|
-
"inputs": [
|
|
194
|
-
"default",
|
|
195
|
-
"{workspaceRoot}/.eslintrc.json",
|
|
196
|
-
"{workspaceRoot}/.eslintignore",
|
|
197
|
-
"{workspaceRoot}/eslint.config.js"
|
|
198
|
-
]
|
|
199
|
-
},
|
|
200
198
|
"@nx/jest:jest": {
|
|
201
199
|
"cache": true,
|
|
202
200
|
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
|
|
@@ -222,6 +220,9 @@ exports[`preset should use angular preset 3`] = `
|
|
|
222
220
|
"component-test": {
|
|
223
221
|
"cache": true
|
|
224
222
|
},
|
|
223
|
+
"@nx/js:tsc": {
|
|
224
|
+
"dependsOn": ["^index-export", "index-export", "^build"]
|
|
225
|
+
},
|
|
225
226
|
"fix-dependencies": {
|
|
226
227
|
"executor": "@rxap/plugin-library:run-generator",
|
|
227
228
|
"outputs": ["{projectRoot}/package.json"],
|
|
@@ -269,6 +270,18 @@ exports[`preset should use angular preset 3`] = `
|
|
|
269
270
|
"expose-as-schematic": {
|
|
270
271
|
"cache": true
|
|
271
272
|
},
|
|
273
|
+
"@nx/angular:ng-packagr-lite": {
|
|
274
|
+
"dependsOn": [
|
|
275
|
+
"index-export",
|
|
276
|
+
"^index-export",
|
|
277
|
+
"^build",
|
|
278
|
+
"check-version",
|
|
279
|
+
"build-tailwind",
|
|
280
|
+
"check-ng-package"
|
|
281
|
+
],
|
|
282
|
+
"inputs": ["production", "^production"],
|
|
283
|
+
"cache": true
|
|
284
|
+
},
|
|
272
285
|
"build-tailwind": {
|
|
273
286
|
"outputs": ["{projectRoot}/theme.css"],
|
|
274
287
|
"inputs": [
|
|
@@ -284,11 +297,6 @@ exports[`preset should use angular preset 3`] = `
|
|
|
284
297
|
},
|
|
285
298
|
"copy-client-sdk": {
|
|
286
299
|
"cache": true
|
|
287
|
-
},
|
|
288
|
-
"@nx/angular:ng-packagr-lite": {
|
|
289
|
-
"cache": true,
|
|
290
|
-
"dependsOn": ["^build"],
|
|
291
|
-
"inputs": ["production", "^production"]
|
|
292
300
|
}
|
|
293
301
|
},
|
|
294
302
|
"namedInputs": {
|
|
@@ -310,6 +318,9 @@ exports[`preset should use angular preset 3`] = `
|
|
|
310
318
|
"!{projectRoot}/cypress/**/*",
|
|
311
319
|
"!{projectRoot}/**/*.cy.[jt]s?(x)",
|
|
312
320
|
"!{projectRoot}/cypress.config.[jt]s",
|
|
321
|
+
"!{projectRoot}/**/*.stories.@(js|jsx|ts|tsx|mdx)",
|
|
322
|
+
"!{projectRoot}/.storybook/**/*",
|
|
323
|
+
"!{projectRoot}/tsconfig.storybook.json",
|
|
313
324
|
"!{projectRoot}/.eslintrc.json",
|
|
314
325
|
"!{projectRoot}/eslint.config.js",
|
|
315
326
|
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|