aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json62
1 files changed, 0 insertions, 62 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json
deleted file mode 100644
index c71ef86e..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "BuildersSchema",
- "title": "Builders schema for validating a list of builders.",
- "type": "object",
- "properties": {
- "$schema": {
- "type": "string",
- "description": "Link to schema."
- },
- "builders": {
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/builder"
- }
- }
- },
- "required": ["builders"],
- "definitions": {
- "builder": {
- "type": "object",
- "description": "Target options for Builders.",
- "allOf": [
- {
- "properties": {
- "schema": {
- "type": "string",
- "description": "Schema for builder option validation."
- },
- "description": {
- "type": "string",
- "description": "Builder description."
- }
- },
- "required": ["schema", "description"]
- },
- {
- "anyOf": [
- {
- "properties": {
- "implementation": {
- "type": "string",
- "description": "The next generation builder module."
- }
- },
- "required": ["implementation"]
- },
- {
- "properties": {
- "class": {
- "type": "string",
- "description": "The builder class module."
- }
- },
- "required": ["class"]
- }
- ]
- }
- ]
- }
- }
-}