diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-01 22:05:25 +0100 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-01 22:05:25 +0100 |
commit | 6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch) | |
tree | c1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test | |
parent | 7d3640f824f46490b47bd95f1c5a16644f712068 (diff) |
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test')
6 files changed, 0 insertions, 97 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.d.ts deleted file mode 100644 index 212c0d42..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.d.ts +++ /dev/null @@ -1,9 +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 { UnitTestTree } from '@angular-devkit/schematics/testing'; -export declare function createAppModule(tree: UnitTestTree, path?: string): UnitTestTree; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.js deleted file mode 100644 index c74a6a7c..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/create-app-module.js +++ /dev/null @@ -1,31 +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 }); -exports.createAppModule = void 0; -function createAppModule(tree, path) { - tree.create(path || '/src/app/app.module.ts', ` - import { BrowserModule } from '@angular/platform-browser'; - import { NgModule } from '@angular/core'; - import { AppComponent } from './app.component'; - - @NgModule({ - declarations: [ - AppComponent - ], - imports: [ - BrowserModule - ], - providers: [], - bootstrap: [AppComponent] - }) - export class AppModule { } - `); - return tree; -} -exports.createAppModule = createAppModule; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.d.ts deleted file mode 100644 index 467f4379..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.d.ts +++ /dev/null @@ -1,9 +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 { Tree } from '@angular-devkit/schematics'; -export declare function getFileContent(tree: Tree, path: string): string; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.js deleted file mode 100644 index 11e14d8c..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/get-file-content.js +++ /dev/null @@ -1,18 +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 }); -exports.getFileContent = void 0; -function getFileContent(tree, path) { - const fileEntry = tree.get(path); - if (!fileEntry) { - throw new Error(`The file (${path}) does not exist.`); - } - return fileEntry.content.toString(); -} -exports.getFileContent = getFileContent; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.d.ts b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.d.ts deleted file mode 100644 index a05d72b6..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.d.ts +++ /dev/null @@ -1,9 +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 - */ -export * from './create-app-module'; -export * from './get-file-content'; diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.js deleted file mode 100644 index 13c15ace..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/utility/test/index.js +++ /dev/null @@ -1,21 +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 - */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./create-app-module"), exports); -__exportStar(require("./get-file-content"), exports); |