From 291803c31f829fe0d32bb3207bc11def95a7408c Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 20:05:50 +0100 Subject: Urađena test aplikacija. Povezan front i back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../architect/src/builders-schema.json | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json') 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 new file mode 100644 index 00000000..c71ef86e --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/builders-schema.json @@ -0,0 +1,62 @@ +{ + "$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"] + } + ] + } + ] + } + } +} -- cgit v1.2.3