@onecx/angular-testing 8.0.0-rc.9 → 9.0.0-rc.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/README.md CHANGED
@@ -11,7 +11,6 @@ npm install @onecx/angular-testing
11
11
 
12
12
  ## Additional Commands
13
13
  - `npx nx run angular-testing:build` - Builds the library and outputs the result to the `dist` folder.
14
- - `npx nx run angular-testing:build-migrations` - Builds the migration files for the library.
15
14
  - `npx nx run angular-testing:test` - Runs the unit tests for the library.
16
15
  - `npx nx run angular-testing:lint` - Lints the library's codebase.
17
16
  - `npx nx run angular-testing:release` - Releases a new version of the library to npm, following semantic versioning guidelines.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onecx/angular-testing",
3
- "version": "8.0.0-rc.9",
3
+ "version": "9.0.0-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,10 +9,8 @@
9
9
  "peerDependencies": {
10
10
  "@angular/cdk": "^21.0.0",
11
11
  "primeng": "^21.0.2",
12
- "@onecx/accelerator": "^8.0.0-rc.9",
13
- "@nx/devkit": "^22.0.2",
12
+ "@onecx/accelerator": "^9.0.0-rc.1",
14
13
  "@ngx-translate/core": "^17.0.0",
15
- "@onecx/nx-migration-utils": "^8.0.0-rc.9",
16
14
  "rxjs": "^7.8.2"
17
15
  },
18
16
  "dependencies": {
@@ -21,9 +19,6 @@
21
19
  "publishConfig": {
22
20
  "access": "public"
23
21
  },
24
- "nx-migrations": {
25
- "migrations": "./migrations.json"
26
- },
27
22
  "module": "fesm2022/onecx-angular-testing.mjs",
28
23
  "typings": "types/onecx-angular-testing.d.ts",
29
24
  "exports": {
@@ -1 +0,0 @@
1
- export * from './v6/migrate-onecx-to-v6';
@@ -1,2 +0,0 @@
1
- export * from './v6/migrate-onecx-to-v6';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/angular-testing/migrations/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAA"}
@@ -1,2 +0,0 @@
1
- import { Tree } from '@nx/devkit';
2
- export default function migrateOnecxToV6(tree: Tree): Promise<void>;
@@ -1,5 +0,0 @@
1
- import { commonMigrateOnecxToV6 } from '@onecx/nx-migration-utils';
2
- export default async function migrateOnecxToV6(tree) {
3
- await commonMigrateOnecxToV6(tree);
4
- }
5
- //# sourceMappingURL=migrate-onecx-to-v6.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"migrate-onecx-to-v6.js","sourceRoot":"","sources":["../../../../../libs/angular-testing/migrations/v6/migrate-onecx-to-v6.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAA;AAElE,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,gBAAgB,CAAC,IAAU;IACvD,MAAM,sBAAsB,CAAC,IAAI,CAAC,CAAA;AACpC,CAAC"}
package/migrations.json DELETED
@@ -1,34 +0,0 @@
1
- {
2
- "generators": {
3
- "migrate-onecx-to-v6": {
4
- "cli": "nx",
5
- "version": "6.0.0",
6
- "description": "Update package json to Angular 19, PrimeNG 19, OneCX versions to v6 and other dependencies to be compatible with Angular 19.",
7
- "factory": "migrations/v6/migrate-onecx-to-v6"
8
- }
9
- },
10
- "packageJsonUpdates": {
11
- "6.0.0": {
12
- "version": "6.0.0",
13
- "packages": {
14
- "@angular/cli": {
15
- "version": "~19.0.0",
16
- "alwaysAddToPackageJson": false
17
- },
18
- "@nx/angular": {
19
- "version": "~20.3.0",
20
- "alwaysAddToPackageJson": false
21
- },
22
- "@ngx-translate/core": {
23
- "version": "~16.0.4",
24
- "alwaysAddToPackageJson": false
25
- },
26
- "primeng": {
27
- "version": "~19.0.0",
28
- "alwaysAddToPackageJson": false
29
- }
30
- }
31
- },
32
- "version": "null"
33
- }
34
- }