aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.spec.ts.template16
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.ts.template16
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.d.ts10
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.js14
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.d.ts26
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.js4
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.json44
7 files changed, 0 insertions, 130 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.spec.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.spec.ts.template
deleted file mode 100644
index 3cd1e381..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.spec.ts.template
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { <%= classify(name) %>Resolver } from './<%= dasherize(name) %>.resolver';
-
-describe('<%= classify(name) %>Resolver', () => {
- let resolver: <%= classify(name) %>Resolver;
-
- beforeEach(() => {
- TestBed.configureTestingModule({});
- resolver = TestBed.inject(<%= classify(name) %>Resolver);
- });
-
- it('should be created', () => {
- expect(resolver).toBeTruthy();
- });
-});
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.ts.template
deleted file mode 100644
index ffeaaf41..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/files/__name@dasherize__.resolver.ts.template
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Injectable } from '@angular/core';
-import {
- Router, Resolve,
- RouterStateSnapshot,
- ActivatedRouteSnapshot
-} from '@angular/router';
-import { Observable, of } from 'rxjs';
-
-@Injectable({
- providedIn: 'root'
-})
-export class <%= classify(name) %>Resolver implements Resolve<boolean> {
- resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> {
- return of(true);
- }
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.d.ts
deleted file mode 100644
index 40f9be49..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/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 } from './schema';
-export default function (options: Schema): Rule;
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.js
deleted file mode 100644
index a763d6ac..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/index.js
+++ /dev/null
@@ -1,14 +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) {
- return (0, generate_from_files_1.generateFromFiles)(options);
-}
-exports.default = default_1;
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.d.ts
deleted file mode 100644
index df40b1af..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.d.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * Generates a new, generic resolver definition in the given or default project.
- */
-export interface Schema {
- /**
- * When true (the default), creates the new files at the top level of the current project.
- */
- flat?: boolean;
- /**
- * The name of the new resolver.
- */
- name: string;
- /**
- * The path at which to create the interface that defines the resolver, relative to the
- * current workspace.
- */
- path?: string;
- /**
- * The name of the project.
- */
- project?: string;
- /**
- * Do not create "spec.ts" test files for the new resolver.
- */
- skipTests?: boolean;
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.js
deleted file mode 100644
index 4fb6d3d1..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/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/resolver/schema.json b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.json
deleted file mode 100644
index e62b537b..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/resolver/schema.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "SchematicsAngularResolver",
- "title": "Angular resolver Options Schema",
- "type": "object",
- "additionalProperties": false,
- "description": "Generates a new, generic resolver definition in the given or default project.",
- "properties": {
- "name": {
- "type": "string",
- "description": "The name of the new resolver.",
- "$default": {
- "$source": "argv",
- "index": 0
- },
- "x-prompt": "What name would you like to use for the resolver?"
- },
- "skipTests": {
- "type": "boolean",
- "description": "Do not create \"spec.ts\" test files for the new resolver.",
- "default": false,
- "x-user-analytics": 12
- },
- "flat": {
- "type": "boolean",
- "description": "When true (the default), creates the new files at the top level of the current project.",
- "default": true
- },
- "path": {
- "type": "string",
- "format": "path",
- "description": "The path at which to create the interface that defines the resolver, relative to the current workspace.",
- "visible": false
- },
- "project": {
- "type": "string",
- "description": "The name of the project.",
- "$default": {
- "$source": "projectName"
- }
- }
- },
- "required": ["name"]
-}