summaryrefslogtreecommitdiff
path: root/node_modules/flora-colossus/lib
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/flora-colossus/lib')
-rw-r--r--node_modules/flora-colossus/lib/Walker.d.ts35
-rw-r--r--node_modules/flora-colossus/lib/Walker.js287
-rw-r--r--node_modules/flora-colossus/lib/Walker.js.map1
-rw-r--r--node_modules/flora-colossus/lib/depTypes.d.ts9
-rw-r--r--node_modules/flora-colossus/lib/depTypes.js92
-rw-r--r--node_modules/flora-colossus/lib/depTypes.js.map1
-rw-r--r--node_modules/flora-colossus/lib/index.d.ts2
-rw-r--r--node_modules/flora-colossus/lib/index.js8
-rw-r--r--node_modules/flora-colossus/lib/index.js.map1
-rw-r--r--node_modules/flora-colossus/lib/nativeModuleTypes.d.ts5
-rw-r--r--node_modules/flora-colossus/lib/nativeModuleTypes.js9
-rw-r--r--node_modules/flora-colossus/lib/nativeModuleTypes.js.map1
12 files changed, 0 insertions, 451 deletions
diff --git a/node_modules/flora-colossus/lib/Walker.d.ts b/node_modules/flora-colossus/lib/Walker.d.ts
deleted file mode 100644
index a338c58..0000000
--- a/node_modules/flora-colossus/lib/Walker.d.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-import { DepType } from './depTypes';
-import { NativeModuleType } from './nativeModuleTypes';
-export declare type VersionRange = string;
-export interface PackageJSON {
- name: string;
- dependencies: {
- [name: string]: VersionRange;
- };
- devDependencies: {
- [name: string]: VersionRange;
- };
- optionalDependencies: {
- [name: string]: VersionRange;
- };
-}
-export interface Module {
- path: string;
- depType: DepType;
- nativeModuleType: NativeModuleType;
- name: string;
-}
-export declare class Walker {
- private rootModule;
- private modules;
- private walkHistory;
- constructor(modulePath: string);
- private relativeModule;
- private loadPackageJSON;
- private walkDependenciesForModuleInModule;
- private detectNativeModuleType;
- private walkDependenciesForModule;
- private cache;
- walkTree(): Promise<Module[]>;
- getRootModule(): string;
-}
diff --git a/node_modules/flora-colossus/lib/Walker.js b/node_modules/flora-colossus/lib/Walker.js
deleted file mode 100644
index 2448554..0000000
--- a/node_modules/flora-colossus/lib/Walker.js
+++ /dev/null
@@ -1,287 +0,0 @@
-"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 = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
- if (y = 0, t) op = [op[0] & 2, 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 debug = require("debug");
-var fs = require("fs-extra");
-var path = require("path");
-var depTypes_1 = require("./depTypes");
-var nativeModuleTypes_1 = require("./nativeModuleTypes");
-var d = debug('flora-colossus');
-var Walker = /** @class */ (function () {
- function Walker(modulePath) {
- this.walkHistory = new Set();
- this.cache = null;
- if (!modulePath || typeof modulePath !== 'string') {
- throw new Error('modulePath must be provided as a string');
- }
- d("creating walker with rootModule=" + modulePath);
- this.rootModule = modulePath;
- }
- Walker.prototype.relativeModule = function (rootPath, moduleName) {
- return path.resolve(rootPath, 'node_modules', moduleName);
- };
- Walker.prototype.loadPackageJSON = function (modulePath) {
- return __awaiter(this, void 0, void 0, function () {
- var pJPath, pJ;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- pJPath = path.resolve(modulePath, 'package.json');
- return [4 /*yield*/, fs.pathExists(pJPath)];
- case 1:
- if (!_a.sent()) return [3 /*break*/, 3];
- return [4 /*yield*/, fs.readJson(pJPath)];
- case 2:
- pJ = _a.sent();
- if (!pJ.dependencies)
- pJ.dependencies = {};
- if (!pJ.devDependencies)
- pJ.devDependencies = {};
- if (!pJ.optionalDependencies)
- pJ.optionalDependencies = {};
- return [2 /*return*/, pJ];
- case 3: return [2 /*return*/, null];
- }
- });
- });
- };
- Walker.prototype.walkDependenciesForModuleInModule = function (moduleName, modulePath, depType) {
- return __awaiter(this, void 0, void 0, function () {
- var testPath, discoveredPath, lastRelative;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- testPath = modulePath;
- discoveredPath = null;
- lastRelative = null;
- _a.label = 1;
- case 1:
- if (!(!discoveredPath && this.relativeModule(testPath, moduleName) !== lastRelative)) return [3 /*break*/, 3];
- lastRelative = this.relativeModule(testPath, moduleName);
- return [4 /*yield*/, fs.pathExists(lastRelative)];
- case 2:
- if (_a.sent()) {
- discoveredPath = lastRelative;
- }
- else {
- if (path.basename(path.dirname(testPath)) !== 'node_modules') {
- testPath = path.dirname(testPath);
- }
- testPath = path.dirname(path.dirname(testPath));
- }
- return [3 /*break*/, 1];
- case 3:
- // If we can't find it the install is probably buggered
- if (!discoveredPath && depType !== depTypes_1.DepType.OPTIONAL && depType !== depTypes_1.DepType.DEV_OPTIONAL) {
- throw new Error("Failed to locate module \"" + moduleName + "\" from \"" + modulePath + "\"\n\n This normally means that either you have deleted this package already somehow (check your ignore settings if using electron-packager). Or your module installation failed.");
- }
- if (!discoveredPath) return [3 /*break*/, 5];
- return [4 /*yield*/, this.walkDependenciesForModule(discoveredPath, depType)];
- case 4:
- _a.sent();
- _a.label = 5;
- case 5: return [2 /*return*/];
- }
- });
- });
- };
- Walker.prototype.detectNativeModuleType = function (modulePath, pJ) {
- return __awaiter(this, void 0, void 0, function () {
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- if (!pJ.dependencies['prebuild-install']) return [3 /*break*/, 1];
- return [2 /*return*/, nativeModuleTypes_1.NativeModuleType.PREBUILD];
- case 1: return [4 /*yield*/, fs.pathExists(path.join(modulePath, 'binding.gyp'))];
- case 2:
- if (_a.sent()) {
- return [2 /*return*/, nativeModuleTypes_1.NativeModuleType.NODE_GYP];
- }
- _a.label = 3;
- case 3: return [2 /*return*/, nativeModuleTypes_1.NativeModuleType.NONE];
- }
- });
- });
- };
- Walker.prototype.walkDependenciesForModule = function (modulePath, depType) {
- return __awaiter(this, void 0, void 0, function () {
- var existingModule, pJ, _a, _b, _c, _d, _e, _i, moduleName, _f, _g, _h, moduleName, _j, _k, _l, moduleName;
- return __generator(this, function (_m) {
- switch (_m.label) {
- case 0:
- d('walk reached:', modulePath, ' Type is:', depTypes_1.DepType[depType]);
- // We have already traversed this module
- if (this.walkHistory.has(modulePath)) {
- d('already walked this route');
- existingModule = this.modules.find(function (module) { return module.path === modulePath; });
- // If the depType we are traversing with now is higher than the
- // last traversal then update it (prod superseeds dev for instance)
- if (depTypes_1.depTypeGreater(depType, existingModule.depType)) {
- d("existing module has a type of \"" + existingModule.depType + "\", new module type would be \"" + depType + "\" therefore updating");
- existingModule.depType = depType;
- }
- return [2 /*return*/];
- }
- return [4 /*yield*/, this.loadPackageJSON(modulePath)];
- case 1:
- pJ = _m.sent();
- // If the module doesn't have a package.json file it is probably a
- // dead install from yarn (they dont clean up for some reason)
- if (!pJ) {
- d('walk hit a dead end, this module is incomplete');
- return [2 /*return*/];
- }
- // Record this module as being traversed
- this.walkHistory.add(modulePath);
- _b = (_a = this.modules).push;
- _c = {
- depType: depType
- };
- return [4 /*yield*/, this.detectNativeModuleType(modulePath, pJ)];
- case 2:
- _b.apply(_a, [(_c.nativeModuleType = _m.sent(),
- _c.path = modulePath,
- _c.name = pJ.name,
- _c)]);
- _d = [];
- for (_e in pJ.dependencies)
- _d.push(_e);
- _i = 0;
- _m.label = 3;
- case 3:
- if (!(_i < _d.length)) return [3 /*break*/, 6];
- moduleName = _d[_i];
- // npm decides it's a funny thing to put optional dependencies in the "dependencies" section
- // after install, because that makes perfect sense
- if (moduleName in pJ.optionalDependencies) {
- d("found " + moduleName + " in prod deps of " + modulePath + " but it is also marked optional");
- return [3 /*break*/, 5];
- }
- return [4 /*yield*/, this.walkDependenciesForModuleInModule(moduleName, modulePath, depTypes_1.childDepType(depType, depTypes_1.DepType.PROD))];
- case 4:
- _m.sent();
- _m.label = 5;
- case 5:
- _i++;
- return [3 /*break*/, 3];
- case 6:
- _f = [];
- for (_g in pJ.optionalDependencies)
- _f.push(_g);
- _h = 0;
- _m.label = 7;
- case 7:
- if (!(_h < _f.length)) return [3 /*break*/, 10];
- moduleName = _f[_h];
- return [4 /*yield*/, this.walkDependenciesForModuleInModule(moduleName, modulePath, depTypes_1.childDepType(depType, depTypes_1.DepType.OPTIONAL))];
- case 8:
- _m.sent();
- _m.label = 9;
- case 9:
- _h++;
- return [3 /*break*/, 7];
- case 10:
- if (!(depType === depTypes_1.DepType.ROOT)) return [3 /*break*/, 14];
- d('we\'re still at the beginning, walking down the dev route');
- _j = [];
- for (_k in pJ.devDependencies)
- _j.push(_k);
- _l = 0;
- _m.label = 11;
- case 11:
- if (!(_l < _j.length)) return [3 /*break*/, 14];
- moduleName = _j[_l];
- return [4 /*yield*/, this.walkDependenciesForModuleInModule(moduleName, modulePath, depTypes_1.childDepType(depType, depTypes_1.DepType.DEV))];
- case 12:
- _m.sent();
- _m.label = 13;
- case 13:
- _l++;
- return [3 /*break*/, 11];
- case 14: return [2 /*return*/];
- }
- });
- });
- };
- Walker.prototype.walkTree = function () {
- return __awaiter(this, void 0, void 0, function () {
- var _this = this;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- d('starting tree walk');
- if (!this.cache) {
- this.cache = new Promise(function (resolve, reject) { return __awaiter(_this, void 0, void 0, function () {
- var err_1;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- this.modules = [];
- _a.label = 1;
- case 1:
- _a.trys.push([1, 3, , 4]);
- return [4 /*yield*/, this.walkDependenciesForModule(this.rootModule, depTypes_1.DepType.ROOT)];
- case 2:
- _a.sent();
- return [3 /*break*/, 4];
- case 3:
- err_1 = _a.sent();
- reject(err_1);
- return [2 /*return*/];
- case 4:
- resolve(this.modules);
- return [2 /*return*/];
- }
- });
- }); });
- }
- else {
- d('tree walk in progress / completed already, waiting for existing walk to complete');
- }
- return [4 /*yield*/, this.cache];
- case 1: return [2 /*return*/, _a.sent()];
- }
- });
- });
- };
- Walker.prototype.getRootModule = function () {
- return this.rootModule;
- };
- return Walker;
-}());
-exports.Walker = Walker;
-//# sourceMappingURL=Walker.js.map \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/Walker.js.map b/node_modules/flora-colossus/lib/Walker.js.map
deleted file mode 100644
index 7d69070..0000000
--- a/node_modules/flora-colossus/lib/Walker.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"Walker.js","sourceRoot":"","sources":["../src/Walker.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6BAA+B;AAC/B,6BAA+B;AAC/B,2BAA6B;AAE7B,uCAAmE;AACnE,yDAAuD;AAgBvD,IAAM,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,CAAC;AAElC;IAKE,gBAAY,UAAkB;QAFtB,gBAAW,GAAgB,IAAI,GAAG,EAAE,CAAC;QAuIrC,UAAK,GAA6B,IAAI,CAAC;QApI7C,IAAI,CAAC,UAAU,IAAI,OAAO,UAAU,KAAK,QAAQ,EAAE;YACjD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;SAC5D;QACD,CAAC,CAAC,qCAAmC,UAAY,CAAC,CAAC;QACnD,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;IAEO,+BAAc,GAAtB,UAAuB,QAAgB,EAAE,UAAkB;QACzD,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,cAAc,EAAE,UAAU,CAAC,CAAC;IAC5D,CAAC;IAEa,gCAAe,GAA7B,UAA8B,UAAkB;;;;;;wBACxC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;wBACpD,qBAAM,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC,EAAA;;6BAA3B,SAA2B,EAA3B,wBAA2B;wBAClB,qBAAM,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAA;;wBAA9B,EAAE,GAAG,SAAyB;wBACpC,IAAI,CAAC,EAAE,CAAC,YAAY;4BAAE,EAAE,CAAC,YAAY,GAAG,EAAE,CAAC;wBAC3C,IAAI,CAAC,EAAE,CAAC,eAAe;4BAAE,EAAE,CAAC,eAAe,GAAG,EAAE,CAAC;wBACjD,IAAI,CAAC,EAAE,CAAC,oBAAoB;4BAAE,EAAE,CAAC,oBAAoB,GAAG,EAAE,CAAC;wBAC3D,sBAAO,EAAE,EAAC;4BAEZ,sBAAO,IAAI,EAAC;;;;KACb;IAEa,kDAAiC,GAA/C,UAAgD,UAAkB,EAAE,UAAkB,EAAE,OAAgB;;;;;;wBAClG,QAAQ,GAAG,UAAU,CAAC;wBACtB,cAAc,GAAkB,IAAI,CAAC;wBACrC,YAAY,GAAkB,IAAI,CAAC;;;6BAEhC,CAAA,CAAC,cAAc,IAAI,IAAI,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,CAAC,KAAK,YAAY,CAAA;wBAClF,YAAY,GAAG,IAAI,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;wBACrD,qBAAM,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC,EAAA;;wBAArC,IAAI,SAAiC,EAAE;4BACrC,cAAc,GAAG,YAAY,CAAC;yBAC/B;6BAAM;4BACL,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,KAAK,cAAc,EAAE;gCAC5D,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;6BACnC;4BACD,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;yBACjD;;;wBAEH,uDAAuD;wBACvD,IAAI,CAAC,cAAc,IAAI,OAAO,KAAK,kBAAO,CAAC,QAAQ,IAAI,OAAO,KAAK,kBAAO,CAAC,YAAY,EAAE;4BACvF,MAAM,IAAI,KAAK,CACb,+BAA4B,UAAU,kBAAW,UAAU,8LAEiH,CAC7K,CAAC;yBACH;6BAEG,cAAc,EAAd,wBAAc;wBAChB,qBAAM,IAAI,CAAC,yBAAyB,CAAC,cAAc,EAAE,OAAO,CAAC,EAAA;;wBAA7D,SAA6D,CAAC;;;;;;KAEjE;IAEa,uCAAsB,GAApC,UAAqC,UAAkB,EAAE,EAAe;;;;;6BAClE,EAAE,CAAC,YAAY,CAAC,kBAAkB,CAAC,EAAnC,wBAAmC;wBACrC,sBAAO,oCAAgB,CAAC,QAAQ,EAAA;4BACvB,qBAAM,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC,EAAA;;wBAA7D,IAAI,SAAyD,EAAE;4BACpE,sBAAO,oCAAgB,CAAC,QAAQ,EAAA;yBACjC;;4BACD,sBAAO,oCAAgB,CAAC,IAAI,EAAA;;;;KAC7B;IAEa,0CAAyB,GAAvC,UAAwC,UAAkB,EAAE,OAAgB;;;;;;wBAC1E,CAAC,CAAC,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,kBAAO,CAAC,OAAO,CAAC,CAAC,CAAC;wBAC9D,wCAAwC;wBACxC,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;4BACpC,CAAC,CAAC,2BAA2B,CAAC,CAAC;4BAEzB,cAAc,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAA,MAAM,IAAK,OAAA,MAAM,CAAC,IAAI,KAAK,UAAU,EAA1B,CAA0B,CAAW,CAAC;4BAC1F,+DAA+D;4BAC/D,mEAAmE;4BACnE,IAAI,yBAAc,CAAC,OAAO,EAAE,cAAc,CAAC,OAAO,CAAC,EAAE;gCACnD,CAAC,CAAC,qCAAkC,cAAc,CAAC,OAAO,uCAAgC,OAAO,0BAAsB,CAAC,CAAC;gCACzH,cAAc,CAAC,OAAO,GAAG,OAAO,CAAC;6BAClC;4BACD,sBAAO;yBACR;wBAEU,qBAAM,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC,EAAA;;wBAA3C,EAAE,GAAG,SAAsC;wBACjD,kEAAkE;wBAClE,8DAA8D;wBAC9D,IAAI,CAAC,EAAE,EAAE;4BACP,CAAC,CAAC,gDAAgD,CAAC,CAAC;4BACpD,sBAAO;yBACR;wBAED,wCAAwC;wBACxC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;wBACjC,KAAA,CAAA,KAAA,IAAI,CAAC,OAAO,CAAA,CAAC,IAAI,CAAA;;4BACf,OAAO,SAAA;;wBACW,qBAAM,IAAI,CAAC,sBAAsB,CAAC,UAAU,EAAE,EAAE,CAAC,EAAA;;wBAFrE,eAEE,mBAAgB,GAAE,SAAiD;gCACnE,OAAI,GAAE,UAAU;gCAChB,OAAI,GAAE,EAAE,CAAC,IAAI;qCACb,CAAC;;mCAGsB,EAAE,CAAC,YAAY;;;;;;;wBACtC,4FAA4F;wBAC5F,kDAAkD;wBAClD,IAAI,UAAU,IAAI,EAAE,CAAC,oBAAoB,EAAE;4BACzC,CAAC,CAAC,WAAS,UAAU,yBAAoB,UAAU,oCAAiC,CAAC,CAAC;4BACtF,wBAAS;yBACV;wBACD,qBAAM,IAAI,CAAC,iCAAiC,CAC1C,UAAU,EACV,UAAU,EACV,uBAAY,CAAC,OAAO,EAAE,kBAAO,CAAC,IAAI,CAAC,CACpC,EAAA;;wBAJD,SAIC,CAAC;;;;;;;mCAIqB,EAAE,CAAC,oBAAoB;;;;;;;wBAC9C,qBAAM,IAAI,CAAC,iCAAiC,CAC1C,UAAU,EACV,UAAU,EACV,uBAAY,CAAC,OAAO,EAAE,kBAAO,CAAC,QAAQ,CAAC,CACxC,EAAA;;wBAJD,SAIC,CAAC;;;;;;6BAIA,CAAA,OAAO,KAAK,kBAAO,CAAC,IAAI,CAAA,EAAxB,yBAAwB;wBAC1B,CAAC,CAAC,2DAA2D,CAAC,CAAC;;mCACtC,EAAE,CAAC,eAAe;;;;;;;wBACzC,qBAAM,IAAI,CAAC,iCAAiC,CAC1C,UAAU,EACV,UAAU,EACV,uBAAY,CAAC,OAAO,EAAE,kBAAO,CAAC,GAAG,CAAC,CACnC,EAAA;;wBAJD,SAIC,CAAC;;;;;;;;;KAGP;IAGK,yBAAQ,GAAd;;;;;;wBACE,CAAC,CAAC,oBAAoB,CAAC,CAAC;wBACxB,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;4BACf,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAW,UAAO,OAAO,EAAE,MAAM;;;;;4CACvD,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;4CAEhB,qBAAM,IAAI,CAAC,yBAAyB,CAAC,IAAI,CAAC,UAAU,EAAE,kBAAO,CAAC,IAAI,CAAC,EAAA;;4CAAnE,SAAmE,CAAC;;;;4CAEpE,MAAM,CAAC,KAAG,CAAC,CAAC;4CACZ,sBAAO;;4CAET,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;;;iCACvB,CAAC,CAAC;yBACJ;6BAAM;4BACL,CAAC,CAAC,kFAAkF,CAAC,CAAC;yBACvF;wBACM,qBAAM,IAAI,CAAC,KAAK,EAAA;4BAAvB,sBAAO,SAAgB,EAAC;;;;KACzB;IAEM,8BAAa,GAApB;QACE,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IACH,aAAC;AAAD,CAAC,AAjKD,IAiKC;AAjKY,wBAAM"} \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/depTypes.d.ts b/node_modules/flora-colossus/lib/depTypes.d.ts
deleted file mode 100644
index 43cec60..0000000
--- a/node_modules/flora-colossus/lib/depTypes.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-export declare enum DepType {
- PROD = 0,
- DEV = 1,
- OPTIONAL = 2,
- DEV_OPTIONAL = 3,
- ROOT = 4
-}
-export declare const depTypeGreater: (newType: DepType, existing: DepType) => boolean;
-export declare const childDepType: (parentType: DepType, childType: DepType) => DepType.PROD | DepType.PROD | DepType.DEV | DepType.DEV | DepType.OPTIONAL | DepType.OPTIONAL | DepType.DEV_OPTIONAL | DepType.DEV_OPTIONAL;
diff --git a/node_modules/flora-colossus/lib/depTypes.js b/node_modules/flora-colossus/lib/depTypes.js
deleted file mode 100644
index 8138b5b..0000000
--- a/node_modules/flora-colossus/lib/depTypes.js
+++ /dev/null
@@ -1,92 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-var DepType;
-(function (DepType) {
- DepType[DepType["PROD"] = 0] = "PROD";
- DepType[DepType["DEV"] = 1] = "DEV";
- DepType[DepType["OPTIONAL"] = 2] = "OPTIONAL";
- DepType[DepType["DEV_OPTIONAL"] = 3] = "DEV_OPTIONAL";
- DepType[DepType["ROOT"] = 4] = "ROOT";
-})(DepType = exports.DepType || (exports.DepType = {}));
-exports.depTypeGreater = function (newType, existing) {
- switch (existing) {
- case DepType.DEV:
- switch (newType) {
- case DepType.OPTIONAL:
- case DepType.PROD:
- case DepType.ROOT:
- return true;
- case DepType.DEV:
- case DepType.DEV_OPTIONAL:
- default:
- return false;
- }
- case DepType.DEV_OPTIONAL:
- switch (newType) {
- case DepType.OPTIONAL:
- case DepType.PROD:
- case DepType.ROOT:
- case DepType.DEV:
- return true;
- case DepType.DEV_OPTIONAL:
- default:
- return false;
- }
- case DepType.OPTIONAL:
- switch (newType) {
- case DepType.PROD:
- case DepType.ROOT:
- return true;
- case DepType.OPTIONAL:
- case DepType.DEV:
- case DepType.DEV_OPTIONAL:
- default:
- return false;
- }
- case DepType.PROD:
- switch (newType) {
- case DepType.ROOT:
- return true;
- case DepType.PROD:
- case DepType.OPTIONAL:
- case DepType.DEV:
- case DepType.DEV_OPTIONAL:
- default:
- return false;
- }
- case DepType.ROOT:
- switch (newType) {
- case DepType.ROOT:
- case DepType.PROD:
- case DepType.OPTIONAL:
- case DepType.DEV:
- case DepType.DEV_OPTIONAL:
- default:
- return false;
- }
- default:
- return false;
- }
-};
-exports.childDepType = function (parentType, childType) {
- if (childType === DepType.ROOT) {
- throw new Error('Something went wrong, a child dependency can\'t be marked as the ROOT');
- }
- switch (parentType) {
- case DepType.ROOT:
- return childType;
- case DepType.PROD:
- if (childType === DepType.OPTIONAL)
- return DepType.OPTIONAL;
- return DepType.PROD;
- case DepType.OPTIONAL:
- return DepType.OPTIONAL;
- case DepType.DEV_OPTIONAL:
- return DepType.DEV_OPTIONAL;
- case DepType.DEV:
- if (childType === DepType.OPTIONAL)
- return DepType.DEV_OPTIONAL;
- return DepType.DEV;
- }
-};
-//# sourceMappingURL=depTypes.js.map \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/depTypes.js.map b/node_modules/flora-colossus/lib/depTypes.js.map
deleted file mode 100644
index a367398..0000000
--- a/node_modules/flora-colossus/lib/depTypes.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"depTypes.js","sourceRoot":"","sources":["../src/depTypes.ts"],"names":[],"mappings":"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"} \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/index.d.ts b/node_modules/flora-colossus/lib/index.d.ts
deleted file mode 100644
index 5e3eee2..0000000
--- a/node_modules/flora-colossus/lib/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './Walker';
-export * from './depTypes';
diff --git a/node_modules/flora-colossus/lib/index.js b/node_modules/flora-colossus/lib/index.js
deleted file mode 100644
index efa196a..0000000
--- a/node_modules/flora-colossus/lib/index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-"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("./Walker"));
-__export(require("./depTypes"));
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/index.js.map b/node_modules/flora-colossus/lib/index.js.map
deleted file mode 100644
index 67e73c7..0000000
--- a/node_modules/flora-colossus/lib/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAAA,8BAAyB;AACzB,gCAA2B"} \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/nativeModuleTypes.d.ts b/node_modules/flora-colossus/lib/nativeModuleTypes.d.ts
deleted file mode 100644
index febfd58..0000000
--- a/node_modules/flora-colossus/lib/nativeModuleTypes.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export declare enum NativeModuleType {
- NONE = 0,
- NODE_GYP = 1,
- PREBUILD = 2
-}
diff --git a/node_modules/flora-colossus/lib/nativeModuleTypes.js b/node_modules/flora-colossus/lib/nativeModuleTypes.js
deleted file mode 100644
index 58361ad..0000000
--- a/node_modules/flora-colossus/lib/nativeModuleTypes.js
+++ /dev/null
@@ -1,9 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-var NativeModuleType;
-(function (NativeModuleType) {
- NativeModuleType[NativeModuleType["NONE"] = 0] = "NONE";
- NativeModuleType[NativeModuleType["NODE_GYP"] = 1] = "NODE_GYP";
- NativeModuleType[NativeModuleType["PREBUILD"] = 2] = "PREBUILD";
-})(NativeModuleType = exports.NativeModuleType || (exports.NativeModuleType = {}));
-//# sourceMappingURL=nativeModuleTypes.js.map \ No newline at end of file
diff --git a/node_modules/flora-colossus/lib/nativeModuleTypes.js.map b/node_modules/flora-colossus/lib/nativeModuleTypes.js.map
deleted file mode 100644
index b2818bf..0000000
--- a/node_modules/flora-colossus/lib/nativeModuleTypes.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"nativeModuleTypes.js","sourceRoot":"","sources":["../src/nativeModuleTypes.ts"],"names":[],"mappings":";;AAAA,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,uDAAI,CAAA;IACJ,+DAAQ,CAAA;IACR,+DAAQ,CAAA;AACV,CAAC,EAJW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAI3B"} \ No newline at end of file