summaryrefslogtreecommitdiff
path: root/node_modules/galactus/lib
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 22:54:37 +0300
commit703e03aba33f234712206769f57717ba7d92d23d (patch)
tree0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/galactus/lib
parentab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff)
downloadFlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz
FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/galactus/lib')
-rw-r--r--node_modules/galactus/lib/DestroyerOfModules.d.ts18
-rw-r--r--node_modules/galactus/lib/DestroyerOfModules.js164
-rw-r--r--node_modules/galactus/lib/DestroyerOfModules.js.map1
-rw-r--r--node_modules/galactus/lib/index.d.ts2
-rw-r--r--node_modules/galactus/lib/index.js8
-rw-r--r--node_modules/galactus/lib/index.js.map1
6 files changed, 194 insertions, 0 deletions
diff --git a/node_modules/galactus/lib/DestroyerOfModules.d.ts b/node_modules/galactus/lib/DestroyerOfModules.d.ts
new file mode 100644
index 0000000..482f30c
--- /dev/null
+++ b/node_modules/galactus/lib/DestroyerOfModules.d.ts
@@ -0,0 +1,18 @@
+import { Module, Walker } from 'flora-colossus';
+export declare type ShouldKeepModuleTest = (module: Module, isDevDep: boolean) => boolean;
+export declare type ModuleMap = Map<string, Module>;
+export declare class DestroyerOfModules {
+ private walker;
+ private shouldKeepFn;
+ constructor({rootDirectory, walker, shouldKeepModuleTest}: {
+ rootDirectory?: string;
+ walker?: Walker;
+ shouldKeepModuleTest?: ShouldKeepModuleTest;
+ });
+ destroyModule(modulePath: string, moduleMap: ModuleMap): Promise<void>;
+ collectKeptModules({relativePaths}: {
+ relativePaths: boolean;
+ }): Promise<ModuleMap>;
+ destroy(): Promise<void>;
+ private shouldKeepModule(module);
+}
diff --git a/node_modules/galactus/lib/DestroyerOfModules.js b/node_modules/galactus/lib/DestroyerOfModules.js
new file mode 100644
index 0000000..659f2f1
--- /dev/null
+++ b/node_modules/galactus/lib/DestroyerOfModules.js
@@ -0,0 +1,164 @@
+"use strict";
+var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
+ return new (P || (P = Promise))(function (resolve, reject) {
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
+ function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
+ });
+};
+var __generator = (this && this.__generator) || function (thisArg, body) {
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
+ function verb(n) { return function (v) { return step([n, v]); }; }
+ function step(op) {
+ if (f) throw new TypeError("Generator is already executing.");
+ while (_) try {
+ if (f = 1, y && (t = y[op[0] & 2 ? "return" : op[0] ? "throw" : "next"]) && !(t = t.call(y, op[1])).done) return t;
+ if (y = 0, t) op = [0, t.value];
+ switch (op[0]) {
+ case 0: case 1: t = op; break;
+ case 4: _.label++; return { value: op[1], done: false };
+ case 5: _.label++; y = op[1]; op = [0]; continue;
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
+ default:
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
+ if (t[2]) _.ops.pop();
+ _.trys.pop(); continue;
+ }
+ op = body.call(thisArg, _);
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
+ }
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+var fs = require("fs-extra");
+var path = require("path");
+var flora_colossus_1 = require("flora-colossus");
+var DestroyerOfModules = /** @class */ (function () {
+ function DestroyerOfModules(_a) {
+ var rootDirectory = _a.rootDirectory, walker = _a.walker, shouldKeepModuleTest = _a.shouldKeepModuleTest;
+ if (rootDirectory) {
+ this.walker = new flora_colossus_1.Walker(rootDirectory);
+ }
+ else if (walker) {
+ this.walker = walker;
+ }
+ else {
+ throw new Error('Must either provide rootDirectory or walker argument');
+ }
+ if (shouldKeepModuleTest) {
+ this.shouldKeepFn = shouldKeepModuleTest;
+ }
+ }
+ DestroyerOfModules.prototype.destroyModule = function (modulePath, moduleMap) {
+ return __awaiter(this, void 0, void 0, function () {
+ var module, nodeModulesPath, _i, _a, subModuleName, _b, _c, subScopedModuleName;
+ return __generator(this, function (_d) {
+ switch (_d.label) {
+ case 0:
+ module = moduleMap.get(modulePath);
+ if (!module) return [3 /*break*/, 13];
+ nodeModulesPath = path.resolve(modulePath, 'node_modules');
+ return [4 /*yield*/, fs.pathExists(nodeModulesPath)];
+ case 1:
+ if (!(_d.sent())) {
+ return [2 /*return*/];
+ }
+ _i = 0;
+ return [4 /*yield*/, fs.readdir(nodeModulesPath)];
+ case 2:
+ _a = _d.sent();
+ _d.label = 3;
+ case 3:
+ if (!(_i < _a.length)) return [3 /*break*/, 12];
+ subModuleName = _a[_i];
+ if (!subModuleName.startsWith('@')) return [3 /*break*/, 9];
+ _b = 0;
+ return [4 /*yield*/, fs.readdir(path.resolve(nodeModulesPath, subModuleName))];
+ case 4:
+ _c = _d.sent();
+ _d.label = 5;
+ case 5:
+ if (!(_b < _c.length)) return [3 /*break*/, 8];
+ subScopedModuleName = _c[_b];
+ return [4 /*yield*/, this.destroyModule(path.resolve(nodeModulesPath, subModuleName, subScopedModuleName), moduleMap)];
+ case 6:
+ _d.sent();
+ _d.label = 7;
+ case 7:
+ _b++;
+ return [3 /*break*/, 5];
+ case 8: return [3 /*break*/, 11];
+ case 9: return [4 /*yield*/, this.destroyModule(path.resolve(nodeModulesPath, subModuleName), moduleMap)];
+ case 10:
+ _d.sent();
+ _d.label = 11;
+ case 11:
+ _i++;
+ return [3 /*break*/, 3];
+ case 12: return [3 /*break*/, 15];
+ case 13: return [4 /*yield*/, fs.remove(modulePath)];
+ case 14:
+ _d.sent();
+ _d.label = 15;
+ case 15: return [2 /*return*/];
+ }
+ });
+ });
+ };
+ DestroyerOfModules.prototype.collectKeptModules = function (_a) {
+ var _b = _a.relativePaths, relativePaths = _b === void 0 ? false : _b;
+ return __awaiter(this, void 0, void 0, function () {
+ var modules, moduleMap, rootPath, _i, modules_1, module_1, modulePath;
+ return __generator(this, function (_c) {
+ switch (_c.label) {
+ case 0: return [4 /*yield*/, this.walker.walkTree()];
+ case 1:
+ modules = _c.sent();
+ moduleMap = new Map();
+ rootPath = path.resolve(this.walker.getRootModule());
+ for (_i = 0, modules_1 = modules; _i < modules_1.length; _i++) {
+ module_1 = modules_1[_i];
+ if (this.shouldKeepModule(module_1)) {
+ modulePath = module_1.path;
+ if (relativePaths) {
+ modulePath = modulePath.replace("" + rootPath + path.sep, '');
+ }
+ moduleMap.set(modulePath, module_1);
+ }
+ }
+ return [2 /*return*/, moduleMap];
+ }
+ });
+ });
+ };
+ DestroyerOfModules.prototype.destroy = function () {
+ return __awaiter(this, void 0, void 0, function () {
+ var _a, _b;
+ return __generator(this, function (_c) {
+ switch (_c.label) {
+ case 0:
+ _a = this.destroyModule;
+ _b = [this.walker.getRootModule()];
+ return [4 /*yield*/, this.collectKeptModules({ relativePaths: false })];
+ case 1: return [4 /*yield*/, _a.apply(this, _b.concat([_c.sent()]))];
+ case 2:
+ _c.sent();
+ return [2 /*return*/];
+ }
+ });
+ });
+ };
+ DestroyerOfModules.prototype.shouldKeepModule = function (module) {
+ var isDevDep = module.depType === flora_colossus_1.DepType.DEV || module.depType === flora_colossus_1.DepType.DEV_OPTIONAL;
+ var shouldKeep = this.shouldKeepFn ? this.shouldKeepFn(module, isDevDep) : !isDevDep;
+ return shouldKeep;
+ };
+ return DestroyerOfModules;
+}());
+exports.DestroyerOfModules = DestroyerOfModules;
+//# sourceMappingURL=DestroyerOfModules.js.map \ No newline at end of file
diff --git a/node_modules/galactus/lib/DestroyerOfModules.js.map b/node_modules/galactus/lib/DestroyerOfModules.js.map
new file mode 100644
index 0000000..a5302bc
--- /dev/null
+++ b/node_modules/galactus/lib/DestroyerOfModules.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"DestroyerOfModules.js","sourceRoot":"","sources":["../src/DestroyerOfModules.ts"],"names":[],"mappings":"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"} \ No newline at end of file
diff --git a/node_modules/galactus/lib/index.d.ts b/node_modules/galactus/lib/index.d.ts
new file mode 100644
index 0000000..7ccd9ab
--- /dev/null
+++ b/node_modules/galactus/lib/index.d.ts
@@ -0,0 +1,2 @@
+export * from './DestroyerOfModules';
+export * from 'flora-colossus';
diff --git a/node_modules/galactus/lib/index.js b/node_modules/galactus/lib/index.js
new file mode 100644
index 0000000..c2424a4
--- /dev/null
+++ b/node_modules/galactus/lib/index.js
@@ -0,0 +1,8 @@
+"use strict";
+function __export(m) {
+ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
+}
+Object.defineProperty(exports, "__esModule", { value: true });
+__export(require("./DestroyerOfModules"));
+__export(require("flora-colossus"));
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/galactus/lib/index.js.map b/node_modules/galactus/lib/index.js.map
new file mode 100644
index 0000000..382ffba
--- /dev/null
+++ b/node_modules/galactus/lib/index.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAAA,0CAAqC;AACrC,oCAA+B"} \ No newline at end of file