@rxap/plugin-library 14.1.0-dev.0 → 15.0.0

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,12 +3,22 @@
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
- # [14.1.0-dev.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@14.1.0-dev.0) (2022-12-14)
6
+ # [15.0.0](https://gitlab.com/rxap/schematics/compare/@rxap/plugin-library@14.0.3...@rxap/plugin-library@15.0.0) (2022-12-14)
7
+
8
+
9
+ ### chore
10
+
11
+ * upgrade to nrwl 15.x.x ([b0694b6](https://gitlab.com/rxap/schematics/commit/b0694b6550730b80fb7356f6c225787fda1ff6be))
7
12
 
8
13
 
9
14
  ### Features
10
15
 
11
- * **library:** only include direct dependencies on default ([7055eca](https://gitlab.com/rxap/schematics/commit/7055ecae23f03b79cff8e094c1f9c87294953cc2))
16
+ * **library:** only include direct dependencies on default ([8892585](https://gitlab.com/rxap/schematics/commit/889258508b6a157b049ba9ebd74d6c32f8865331))
17
+
18
+
19
+ ### BREAKING CHANGES
20
+
21
+ * upgrade nrwl 15.x.x
12
22
 
13
23
 
14
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxap/plugin-library",
3
- "version": "14.1.0-dev.0",
3
+ "version": "15.0.0",
4
4
  "author": "Merzough Münker",
5
5
  "homepage": "https://gitlab.com/rxap/plugins/libs/library",
6
6
  "repository": "git@gitlab.com:rxap/schematics.git",
@@ -26,10 +26,10 @@
26
26
  "save": "devDependencies"
27
27
  },
28
28
  "dependencies": {
29
- "@angular-devkit/architect": "^0.1402.2",
30
- "@angular-devkit/core": "^14.2.2",
31
- "@angular-devkit/schematics": "^14.2.2",
32
- "@rxap/schematics-utilities": "^14.0.1",
29
+ "@angular-devkit/architect": "^0.1500.3",
30
+ "@angular-devkit/core": "^15.0.3",
31
+ "@angular-devkit/schematics": "^15.0.3",
32
+ "@rxap/schematics-utilities": "^15.0.0",
33
33
  "tslib": "^2.3.1",
34
34
  "typescript": "^4.8.4"
35
35
  },
@@ -44,8 +44,8 @@
44
44
  ]
45
45
  },
46
46
  "peerDependencies": {
47
- "@nrwl/workspace": "^14.8.6",
48
- "nx": "^14.8.6"
47
+ "@nrwl/workspace": "^15.3.3",
48
+ "nx": "^15.3.3"
49
49
  },
50
50
  "gitHead": "4d5539102ddcfc828e6d22e8a15beb42e326ca12",
51
51
  "types": "./src/index.d.ts"
@@ -1,4 +1,6 @@
1
1
  {
2
+ "version": 2,
3
+ "outputCapture": "direct-nodejs",
2
4
  "$schema": "http://json-schema.org/schema",
3
5
  "title": "Build builder",
4
6
  "description": "",
@@ -22,18 +24,10 @@
22
24
  },
23
25
  "type": {
24
26
  "type": "string",
25
- "enum": [
26
- "migrations",
27
- "schematics",
28
- "builders"
29
- ]
27
+ "enum": ["migrations", "schematics", "builders"]
30
28
  }
31
29
  },
32
- "required": [
33
- "tsConfig",
34
- "outputPath",
35
- "type"
36
- ],
30
+ "required": ["tsConfig", "outputPath", "type"],
37
31
  "definitions": {
38
32
  "assetPattern": {
39
33
  "oneOf": [
@@ -61,11 +55,7 @@
61
55
  }
62
56
  },
63
57
  "additionalProperties": false,
64
- "required": [
65
- "glob",
66
- "input",
67
- "output"
68
- ]
58
+ "required": ["glob", "input", "output"]
69
59
  },
70
60
  {
71
61
  "type": "string"
@@ -1,8 +1,10 @@
1
1
  {
2
+ "version": 2,
3
+ "outputCapture": "direct-nodejs",
2
4
  "$schema": "http://json-schema.org/schema",
3
5
  "title": "Update package group builder options",
4
6
  "description": "",
5
7
  "type": "object",
6
8
  "properties": {},
7
9
  "required": []
8
- }
10
+ }
@@ -1,4 +1,6 @@
1
1
  {
2
+ "version": 2,
3
+ "outputCapture": "direct-nodejs",
2
4
  "$schema": "http://json-schema.org/schema",
3
5
  "$id": "rxap-library-update-peer-dependencies",
4
6
  "title": "UpdatePeerDependencies",
@@ -1,8 +1,8 @@
1
- export declare type FileInputOutput = {
1
+ export type FileInputOutput = {
2
2
  input: string;
3
3
  output: string;
4
4
  };
5
- export declare type AssetGlob = FileInputOutput & {
5
+ export type AssetGlob = FileInputOutput & {
6
6
  glob: string;
7
7
  ignore: string[];
8
8
  dot?: boolean;