aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
commit6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch)
treec1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/BUILD.bazel32
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.d.ts15
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.js47
3 files changed, 0 insertions, 94 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/BUILD.bazel b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/BUILD.bazel
deleted file mode 100644
index 230f2f37..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/BUILD.bazel
+++ /dev/null
@@ -1,32 +0,0 @@
-load("//tools:defaults.bzl", "ts_library")
-
-# Copyright Google Inc. 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
-licenses(["notice"])
-
-package(default_visibility = ["//visibility:public"])
-
-ts_library(
- name = "node",
- srcs = glob(
- include = ["**/*.ts"],
- exclude = [
- "**/*_spec.ts",
- "**/*_benchmark.ts",
- ],
- ),
- module_name = "@angular-devkit/schematics/tasks/node",
- module_root = "index.d.ts",
- # The attribute below is needed in g3 to turn off strict typechecking
- # strict_checks = False,
- deps = [
- "//packages/angular_devkit/core",
- "//packages/angular_devkit/core/node",
- "//packages/angular_devkit/schematics",
- "//packages/angular_devkit/schematics/tasks",
- "@npm//@types/node",
- "@npm//rxjs",
- ],
-)
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.d.ts
deleted file mode 100644
index 0bebe160..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.d.ts
+++ /dev/null
@@ -1,15 +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 { TaskExecutorFactory } from '../../src';
-import { NodePackageTaskFactoryOptions } from '../package-manager/options';
-import { RepositoryInitializerTaskFactoryOptions } from '../repo-init/options';
-export declare class BuiltinTaskExecutor {
- static readonly NodePackage: TaskExecutorFactory<NodePackageTaskFactoryOptions>;
- static readonly RepositoryInitializer: TaskExecutorFactory<RepositoryInitializerTaskFactoryOptions>;
- static readonly RunSchematic: TaskExecutorFactory<{}>;
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.js
deleted file mode 100644
index 54120661..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/node/index.js
+++ /dev/null
@@ -1,47 +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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
-}) : function(o, v) {
- o["default"] = v;
-});
-var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-exports.BuiltinTaskExecutor = void 0;
-const options_1 = require("../package-manager/options");
-const options_2 = require("../repo-init/options");
-const options_3 = require("../run-schematic/options");
-class BuiltinTaskExecutor {
-}
-exports.BuiltinTaskExecutor = BuiltinTaskExecutor;
-BuiltinTaskExecutor.NodePackage = {
- name: options_1.NodePackageName,
- create: (options) => Promise.resolve().then(() => __importStar(require('../package-manager/executor'))).then((mod) => mod.default(options)),
-};
-BuiltinTaskExecutor.RepositoryInitializer = {
- name: options_2.RepositoryInitializerName,
- create: (options) => Promise.resolve().then(() => __importStar(require('../repo-init/executor'))).then((mod) => mod.default(options)),
-};
-BuiltinTaskExecutor.RunSchematic = {
- name: options_3.RunSchematicName,
- create: () => Promise.resolve().then(() => __importStar(require('../run-schematic/executor'))).then((mod) => mod.default()),
-};