ui-lib-starter 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "ui-lib-starter",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "A blank schematics",
5
5
  "keywords": [
6
6
  "schematics"
7
7
  ],
8
8
  "author": "",
9
9
  "license": "MIT",
10
- "schematics": "./src/collection.json",
10
+ "schematics": "./schematics/collection.json",
11
11
  "peerDependencies": {
12
12
  "@angular-devkit/core": "^21.2.6",
13
13
  "@angular-devkit/schematics": "^21.2.6"
@@ -1,15 +0,0 @@
1
- {
2
- "$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json",
3
- "schematics": {
4
- "schematics": {
5
- "description": "A blank schematic.",
6
- "factory": "./schematics/index#schematics"
7
- },
8
- "cva-component": {
9
- "description": "This schematic generates CVA component.",
10
- "factory": "./cva-component/index#cvaComponent",
11
- "schema": "./cva-component/schema.json",
12
- "aliases": ["cc"]
13
- }
14
- }
15
- }
@@ -1,20 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "cva",
4
- "title": "CVA component schema",
5
- "type": "object",
6
- "properties": {
7
- "name": {
8
- "description": "The name of the component",
9
- "type": "string"
10
- },
11
- "path": {
12
- "description": "Where should be created the component",
13
- "type": "string",
14
- "format": "path",
15
- "x-prompt": "Where should be created the component?",
16
- "default": "src/app"
17
- }
18
- },
19
- "required": []
20
- }