mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 05:10:05 +02:00
add node modules to repo
This commit is contained in:
2
app/node_modules/galactus/.npmignore
generated
vendored
2
app/node_modules/galactus/.npmignore
generated
vendored
@@ -1,2 +1,2 @@
|
||||
src
|
||||
src
|
||||
test
|
92
app/node_modules/galactus/README.md
generated
vendored
92
app/node_modules/galactus/README.md
generated
vendored
@@ -1,46 +1,46 @@
|
||||
Galactus
|
||||
-----------
|
||||
|
||||
> A JS implementation of `prune --production`
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
npm i --save-dev galactus
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### Class: `DestroyerOfModules`
|
||||
|
||||
```js
|
||||
import { DestroyerOfModules } from 'galactus';
|
||||
|
||||
// modulePath is the root folder of your module
|
||||
const destroyer = new DestroyerOfModules({
|
||||
rootDirectory: __dirname,
|
||||
// Optionally provide your own walker from 'flora-colossus'
|
||||
walker: myWalker,
|
||||
// Optionally provide a method to override the default
|
||||
// keep or destroy test
|
||||
shouldKeepModuleTest: (module, isDepDep) => true,
|
||||
});
|
||||
```
|
||||
|
||||
#### `destroyer.destroy()`
|
||||
|
||||
Returns a `Promise` that resolves once the destruction is complete. By default
|
||||
it will destroy all dependencies that aren't required for production or
|
||||
optional dependencies. You can override this behavior by providing a
|
||||
`shouldKeepModuleTest` function in the constructor.
|
||||
|
||||
#### `destroyer.collectKeptModules()`
|
||||
|
||||
Returns a `Promise` of a `ModuleMap` (a `Map` of paths to `Module`s). The
|
||||
`Promise` resolves when the walker finishes walking the module tree. The
|
||||
`ModuleMap` only contains the `Module`s that would be kept by a call
|
||||
to `destroy()`.
|
||||
|
||||
There is one optional keyword argument, `relativePaths`. By default, the paths
|
||||
in the `ModuleMap` are absolute. If `relativePaths` is `true`, they are relative
|
||||
to the `rootDirectory` specified in the constructor.
|
||||
Galactus
|
||||
-----------
|
||||
|
||||
> A JS implementation of `prune --production`
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
npm i --save-dev galactus
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### Class: `DestroyerOfModules`
|
||||
|
||||
```js
|
||||
import { DestroyerOfModules } from 'galactus';
|
||||
|
||||
// modulePath is the root folder of your module
|
||||
const destroyer = new DestroyerOfModules({
|
||||
rootDirectory: __dirname,
|
||||
// Optionally provide your own walker from 'flora-colossus'
|
||||
walker: myWalker,
|
||||
// Optionally provide a method to override the default
|
||||
// keep or destroy test
|
||||
shouldKeepModuleTest: (module, isDepDep) => true,
|
||||
});
|
||||
```
|
||||
|
||||
#### `destroyer.destroy()`
|
||||
|
||||
Returns a `Promise` that resolves once the destruction is complete. By default
|
||||
it will destroy all dependencies that aren't required for production or
|
||||
optional dependencies. You can override this behavior by providing a
|
||||
`shouldKeepModuleTest` function in the constructor.
|
||||
|
||||
#### `destroyer.collectKeptModules()`
|
||||
|
||||
Returns a `Promise` of a `ModuleMap` (a `Map` of paths to `Module`s). The
|
||||
`Promise` resolves when the walker finishes walking the module tree. The
|
||||
`ModuleMap` only contains the `Module`s that would be kept by a call
|
||||
to `destroy()`.
|
||||
|
||||
There is one optional keyword argument, `relativePaths`. By default, the paths
|
||||
in the `ModuleMap` are absolute. If `relativePaths` is `true`, they are relative
|
||||
to the `rootDirectory` specified in the constructor.
|
||||
|
36
app/node_modules/galactus/lib/DestroyerOfModules.d.ts
generated
vendored
36
app/node_modules/galactus/lib/DestroyerOfModules.d.ts
generated
vendored
@@ -1,18 +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);
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
326
app/node_modules/galactus/lib/DestroyerOfModules.js
generated
vendored
326
app/node_modules/galactus/lib/DestroyerOfModules.js
generated
vendored
@@ -1,164 +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;
|
||||
"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
|
4
app/node_modules/galactus/lib/index.d.ts
generated
vendored
4
app/node_modules/galactus/lib/index.d.ts
generated
vendored
@@ -1,2 +1,2 @@
|
||||
export * from './DestroyerOfModules';
|
||||
export * from 'flora-colossus';
|
||||
export * from './DestroyerOfModules';
|
||||
export * from 'flora-colossus';
|
||||
|
14
app/node_modules/galactus/lib/index.js
generated
vendored
14
app/node_modules/galactus/lib/index.js
generated
vendored
@@ -1,8 +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"));
|
||||
"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
|
24
app/node_modules/galactus/node_modules/debug/package.json
generated
vendored
24
app/node_modules/galactus/node_modules/debug/package.json
generated
vendored
@@ -1,27 +1,33 @@
|
||||
{
|
||||
"_from": "debug@^3.1.0",
|
||||
"_args": [
|
||||
[
|
||||
"debug@3.1.0",
|
||||
"/home/s2/Documents/Code/gitlit/app"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "debug@3.1.0",
|
||||
"_id": "debug@3.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
||||
"_location": "/galactus/debug",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "debug@^3.1.0",
|
||||
"raw": "debug@3.1.0",
|
||||
"name": "debug",
|
||||
"escapedName": "debug",
|
||||
"rawSpec": "^3.1.0",
|
||||
"rawSpec": "3.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^3.1.0"
|
||||
"fetchSpec": "3.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/galactus"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
||||
"_shasum": "5bb5a0672628b64149566ba16819e61518c67261",
|
||||
"_spec": "debug@^3.1.0",
|
||||
"_where": "E:\\projects\\p\\gitlit\\app\\node_modules\\galactus",
|
||||
"_spec": "3.1.0",
|
||||
"_where": "/home/s2/Documents/Code/gitlit/app",
|
||||
"author": {
|
||||
"name": "TJ Holowaychuk",
|
||||
"email": "tj@vision-media.ca"
|
||||
@@ -30,7 +36,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/visionmedia/debug/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Nathan Rajlich",
|
||||
@@ -45,7 +50,6 @@
|
||||
"dependencies": {
|
||||
"ms": "2.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "small debugging utility",
|
||||
"devDependencies": {
|
||||
"browserify": "14.4.0",
|
||||
|
24
app/node_modules/galactus/node_modules/fs-extra/package.json
generated
vendored
24
app/node_modules/galactus/node_modules/fs-extra/package.json
generated
vendored
@@ -1,27 +1,33 @@
|
||||
{
|
||||
"_from": "fs-extra@^4.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"fs-extra@4.0.3",
|
||||
"/home/s2/Documents/Code/gitlit/app"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "fs-extra@4.0.3",
|
||||
"_id": "fs-extra@4.0.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==",
|
||||
"_location": "/galactus/fs-extra",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "fs-extra@^4.0.0",
|
||||
"raw": "fs-extra@4.0.3",
|
||||
"name": "fs-extra",
|
||||
"escapedName": "fs-extra",
|
||||
"rawSpec": "^4.0.0",
|
||||
"rawSpec": "4.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.0.0"
|
||||
"fetchSpec": "4.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/galactus"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz",
|
||||
"_shasum": "0d852122e5bc5beb453fb028e9c0c9bf36340c94",
|
||||
"_spec": "fs-extra@^4.0.0",
|
||||
"_where": "E:\\projects\\p\\gitlit\\app\\node_modules\\galactus",
|
||||
"_spec": "4.0.3",
|
||||
"_where": "/home/s2/Documents/Code/gitlit/app",
|
||||
"author": {
|
||||
"name": "JP Richardson",
|
||||
"email": "jprichardson@gmail.com"
|
||||
@@ -29,13 +35,11 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/jprichardson/node-fs-extra/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"graceful-fs": "^4.1.2",
|
||||
"jsonfile": "^4.0.0",
|
||||
"universalify": "^0.1.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.11.2",
|
||||
|
24
app/node_modules/galactus/node_modules/jsonfile/package.json
generated
vendored
24
app/node_modules/galactus/node_modules/jsonfile/package.json
generated
vendored
@@ -1,27 +1,33 @@
|
||||
{
|
||||
"_from": "jsonfile@^4.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"jsonfile@4.0.0",
|
||||
"/home/s2/Documents/Code/gitlit/app"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "jsonfile@4.0.0",
|
||||
"_id": "jsonfile@4.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
|
||||
"_location": "/galactus/jsonfile",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "jsonfile@^4.0.0",
|
||||
"raw": "jsonfile@4.0.0",
|
||||
"name": "jsonfile",
|
||||
"escapedName": "jsonfile",
|
||||
"rawSpec": "^4.0.0",
|
||||
"rawSpec": "4.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.0.0"
|
||||
"fetchSpec": "4.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/galactus/fs-extra"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
|
||||
"_shasum": "8771aae0799b64076b76640fca058f9c10e33ecb",
|
||||
"_spec": "jsonfile@^4.0.0",
|
||||
"_where": "E:\\projects\\p\\gitlit\\app\\node_modules\\galactus\\node_modules\\fs-extra",
|
||||
"_spec": "4.0.0",
|
||||
"_where": "/home/s2/Documents/Code/gitlit/app",
|
||||
"author": {
|
||||
"name": "JP Richardson",
|
||||
"email": "jprichardson@gmail.com"
|
||||
@@ -29,11 +35,9 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/jprichardson/node-jsonfile/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"graceful-fs": "^4.1.6"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Easily read/write JSON files.",
|
||||
"devDependencies": {
|
||||
"mocha": "2.x",
|
||||
|
24
app/node_modules/galactus/package.json
generated
vendored
24
app/node_modules/galactus/package.json
generated
vendored
@@ -1,5 +1,12 @@
|
||||
{
|
||||
"_from": "galactus@^0.2.1",
|
||||
"_args": [
|
||||
[
|
||||
"galactus@0.2.1",
|
||||
"/home/s2/Documents/Code/gitlit/app"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "galactus@0.2.1",
|
||||
"_id": "galactus@0.2.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=",
|
||||
@@ -10,32 +17,29 @@
|
||||
"universalify": "0.1.1"
|
||||
},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "galactus@^0.2.1",
|
||||
"raw": "galactus@0.2.1",
|
||||
"name": "galactus",
|
||||
"escapedName": "galactus",
|
||||
"rawSpec": "^0.2.1",
|
||||
"rawSpec": "0.2.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.2.1"
|
||||
"fetchSpec": "0.2.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/electron-packager"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz",
|
||||
"_shasum": "cbed2d20a40c1f5679a35908e2b9415733e78db9",
|
||||
"_spec": "galactus@^0.2.1",
|
||||
"_where": "E:\\projects\\p\\gitlit\\app\\node_modules\\electron-packager",
|
||||
"_spec": "0.2.1",
|
||||
"_where": "/home/s2/Documents/Code/gitlit/app",
|
||||
"author": {
|
||||
"name": "Samuel Attard"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"debug": "^3.1.0",
|
||||
"flora-colossus": "^1.0.0",
|
||||
"fs-extra": "^4.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Prunes dependencies from your package",
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.0.10",
|
||||
|
62
app/node_modules/galactus/tsconfig.json
generated
vendored
62
app/node_modules/galactus/tsconfig.json
generated
vendored
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"removeComments": false,
|
||||
"preserveConstEnums": true,
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitReturns": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"strictNullChecks": true,
|
||||
"noUnusedLocals": true,
|
||||
"noImplicitThis": true,
|
||||
"noUnusedParameters": true,
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"pretty": true,
|
||||
"target": "ES5",
|
||||
"outDir": "lib",
|
||||
"lib":[
|
||||
"es2015"
|
||||
]
|
||||
},
|
||||
"formatCodeOptions": {
|
||||
"indentSize": 2,
|
||||
"tabSize": 2
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"lib",
|
||||
"test"
|
||||
]
|
||||
{
|
||||
"compilerOptions": {
|
||||
"removeComments": false,
|
||||
"preserveConstEnums": true,
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitReturns": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"strictNullChecks": true,
|
||||
"noUnusedLocals": true,
|
||||
"noImplicitThis": true,
|
||||
"noUnusedParameters": true,
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"pretty": true,
|
||||
"target": "ES5",
|
||||
"outDir": "lib",
|
||||
"lib":[
|
||||
"es2015"
|
||||
]
|
||||
},
|
||||
"formatCodeOptions": {
|
||||
"indentSize": 2,
|
||||
"tabSize": 2
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"lib",
|
||||
"test"
|
||||
]
|
||||
}
|
24
app/node_modules/galactus/tslint.json
generated
vendored
24
app/node_modules/galactus/tslint.json
generated
vendored
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"defaultSeverity": "error",
|
||||
"extends": [
|
||||
"tslint:recommended"
|
||||
],
|
||||
"jsRules": {},
|
||||
"rules": {
|
||||
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
|
||||
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
|
||||
},
|
||||
"rulesDirectory": []
|
||||
}
|
||||
{
|
||||
"defaultSeverity": "error",
|
||||
"extends": [
|
||||
"tslint:recommended"
|
||||
],
|
||||
"jsRules": {},
|
||||
"rules": {
|
||||
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
|
||||
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
|
||||
},
|
||||
"rulesDirectory": []
|
||||
}
|
||||
|
3108
app/node_modules/galactus/yarn.lock
generated
vendored
3108
app/node_modules/galactus/yarn.lock
generated
vendored
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user