@rxap/schematics-xml-parser 19.0.1 → 19.0.2-dev.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.2-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-xml-parser@19.0.2-dev.0...@rxap/schematics-xml-parser@19.0.2-dev.1) (2025-02-18)
7
+
8
+ **Note:** Version bump only for package @rxap/schematics-xml-parser
9
+
10
+ ## [19.0.2-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/schematics-xml-parser@19.0.1...@rxap/schematics-xml-parser@19.0.2-dev.0) (2025-02-17)
11
+
12
+ **Note:** Version bump only for package @rxap/schematics-xml-parser
13
+
6
14
  ## [19.0.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-xml-parser@19.0.1-dev.14...@rxap/schematics-xml-parser@19.0.1) (2025-02-13)
7
15
 
8
16
  **Note:** Version bump only for package @rxap/schematics-xml-parser
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @rxap/schematics-xml-parser
1
+ This package provides utilities for parsing XML templates within Angular Schematics. It includes functionality to locate templates in a file system, parse them using a specified DOMParser, and register custom elements for parsing. The package also offers elements for defining modules, types, and methods within the XML templates.
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rxap/schematics-xml-parser?style=flat-square)](https://www.npmjs.com/package/@rxap/schematics-xml-parser)
4
4
  [![commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
@@ -9,6 +9,7 @@
9
9
 
10
10
  - [Installation](#installation)
11
11
  - [Generators](#generators)
12
+ - [init](#init)
12
13
 
13
14
  # Installation
14
15
 
@@ -26,5 +27,5 @@ yarn nx g @rxap/schematics-xml-parser:init
26
27
  > Initialize the package in the workspace
27
28
 
28
29
  ```bash
29
- yarn nx g @rxap/schematics-xml-parser:init
30
+ nx g @rxap/schematics-xml-parser:init
30
31
  ```
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "19.0.1",
2
+ "version": "19.0.2-dev.1",
3
3
  "name": "@rxap/schematics-xml-parser",
4
4
  "description": "This package provides utilities for parsing XML templates within Angular Schematics. It includes functionality to locate templates in a file system, parse them using a specified DOMParser, and register custom elements for parsing. The package also offers elements for defining modules, types, and methods within the XML templates.\n",
5
5
  "license": "GPL-3.0-or-later",
@@ -7,9 +7,9 @@
7
7
  "@angular-devkit/core": "^19.1.4",
8
8
  "@angular-devkit/schematics": "^19.1.4",
9
9
  "@nx/devkit": "20.4.2",
10
- "@rxap/schematics-ts-morph": "^19.0.1",
11
- "@rxap/schematics-utilities": "^19.0.1",
12
- "@rxap/xml-parser": "^16.1.2",
10
+ "@rxap/schematics-ts-morph": "^19.0.2-dev.1",
11
+ "@rxap/schematics-utilities": "^19.0.2-dev.1",
12
+ "@rxap/xml-parser": "^16.1.3-dev.0",
13
13
  "ts-morph": "^18.0.0",
14
14
  "tslib": "2.6.2"
15
15
  },
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "schematics": "./generators.json",
44
44
  "type": "commonjs",
45
- "gitHead": "753c877fe1a5c2fcfa737310f6e99fd1371f9b4d",
45
+ "gitHead": "9978b20018f781a5952245bfe2db15ab7612611c",
46
46
  "types": "./src/index.d.ts",
47
47
  "main": "./src/index.js"
48
48
  }