From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- ...__name@dasherize__.interceptor.spec.ts.template | 16 -------- .../__name@dasherize__.interceptor.ts.template | 18 --------- .../@schematics/angular/interceptor/index.d.ts | 10 ----- .../@schematics/angular/interceptor/index.js | 19 ---------- .../@schematics/angular/interceptor/schema.d.ts | 25 ------------ .../@schematics/angular/interceptor/schema.js | 4 -- .../@schematics/angular/interceptor/schema.json | 44 ---------------------- 7 files changed, 136 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.spec.ts.template delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.ts.template delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.d.ts delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.js delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.d.ts delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.js delete mode 100644 sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.json (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor') diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.spec.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.spec.ts.template deleted file mode 100644 index d136abd5..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.spec.ts.template +++ /dev/null @@ -1,16 +0,0 @@ -import { TestBed } from '@angular/core/testing'; - -import { <%= classify(name) %>Interceptor } from './<%= dasherize(name) %>.interceptor'; - -describe('<%= classify(name) %>Interceptor', () => { - beforeEach(() => TestBed.configureTestingModule({ - providers: [ - <%= classify(name) %>Interceptor - ] - })); - - it('should be created', () => { - const interceptor: <%= classify(name) %>Interceptor = TestBed.inject(<%= classify(name) %>Interceptor); - expect(interceptor).toBeTruthy(); - }); -}); diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.ts.template deleted file mode 100644 index fffab4dd..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/files/__name@dasherize@if-flat__/__name@dasherize__.interceptor.ts.template +++ /dev/null @@ -1,18 +0,0 @@ -import { Injectable } from '@angular/core'; -import { - HttpRequest, - HttpHandler, - HttpEvent, - HttpInterceptor -} from '@angular/common/http'; -import { Observable } from 'rxjs'; - -@Injectable() -export class <%= classify(name) %>Interceptor implements HttpInterceptor { - - constructor() {} - - intercept(request: HttpRequest, next: HttpHandler): Observable> { - return next.handle(request); - } -} diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.d.ts deleted file mode 100644 index 3bf719d7..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -import { Rule } from '@angular-devkit/schematics'; -import { Schema as InterceptorOptions } from './schema'; -export default function (options: InterceptorOptions): Rule; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.js deleted file mode 100644 index bd9a7ccb..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/index.js +++ /dev/null @@ -1,19 +0,0 @@ -"use strict"; -/** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -Object.defineProperty(exports, "__esModule", { value: true }); -const generate_from_files_1 = require("../utility/generate-from-files"); -function default_1(options) { - // This schematic uses an older method to implement the flat option - const flat = options.flat; - options.flat = true; - return (0, generate_from_files_1.generateFromFiles)(options, { - 'if-flat': (s) => (flat ? '' : s), - }); -} -exports.default = default_1; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.d.ts deleted file mode 100644 index 189b7b97..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Creates a new, generic interceptor definition in the given or default project. - */ -export interface Schema { - /** - * When true (the default), creates files at the top level of the project. - */ - flat?: boolean; - /** - * The name of the interceptor. - */ - name: string; - /** - * The path at which to create the interceptor, relative to the workspace root. - */ - path?: string; - /** - * The name of the project. - */ - project?: string; - /** - * Do not create "spec.ts" test files for the new interceptor. - */ - skipTests?: boolean; -} diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.js deleted file mode 100644 index 4fb6d3d1..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE -// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...). -Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.json b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.json deleted file mode 100644 index 6bc844ef..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/interceptor/schema.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema", - "$id": "SchematicsAngularInterceptor", - "title": "Angular Interceptor Options Schema", - "type": "object", - "additionalProperties": false, - "description": "Creates a new, generic interceptor definition in the given or default project.", - "properties": { - "name": { - "type": "string", - "description": "The name of the interceptor.", - "$default": { - "$source": "argv", - "index": 0 - }, - "x-prompt": "What name would you like to use for the interceptor?" - }, - "path": { - "type": "string", - "format": "path", - "description": "The path at which to create the interceptor, relative to the workspace root.", - "visible": false - }, - "project": { - "type": "string", - "description": "The name of the project.", - "$default": { - "$source": "projectName" - } - }, - "flat": { - "type": "boolean", - "default": true, - "description": "When true (the default), creates files at the top level of the project." - }, - "skipTests": { - "type": "boolean", - "description": "Do not create \"spec.ts\" test files for the new interceptor.", - "default": false, - "x-user-analytics": 12 - } - }, - "required": ["name"] -} -- cgit v1.2.3