@levimc-lse/scaffold
Version:
A utility for assisting in the development of Legacy Script Engine plugins.
86 lines (85 loc) • 4.04 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (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 () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
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) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Packager = void 0;
const File = __importStar(require("fs"));
const Path = __importStar(require("path"));
const archiver_1 = __importDefault(require("archiver"));
const PluginPackage_1 = require("./PluginPackage");
const ProjectNotBuiltError_1 = require("./exceptions/ProjectNotBuiltError");
const ProjectNotManifestedError_1 = require("./exceptions/ProjectNotManifestedError");
class Packager {
constructor(project) {
this.project = project;
const packagePath = Path.join(this.project.getPath(), `${this.project.getName().replace("/", "-").replace("@", "")}.zip`);
this.pluginPackage = new PluginPackage_1.PluginPackage(this.project.getName(), packagePath);
}
package() {
return __awaiter(this, void 0, void 0, function* () {
if (!this.project.isBuilt()) {
throw new ProjectNotBuiltError_1.ProjectNotBuiltError();
}
if (!this.project.isManifest()) {
throw new ProjectNotManifestedError_1.ProjectNotManifestedError();
}
File.copyFileSync(this.project.getNodeJsConfiguration().getPath(), Path.join(this.project.getBuiltPath(), "package.json"));
const outputStream = File.createWriteStream(this.pluginPackage.getPath());
const archive = (0, archiver_1.default)("zip", { zlib: { level: 9 } });
archive.on("error", (error) => {
throw error;
});
archive.pipe(outputStream);
archive.directory(this.project.getBuiltPath(), false);
yield archive.finalize();
return `The package has been generated at ${outputStream.path}.`;
});
}
getPluginPackage() {
return this.pluginPackage;
}
}
exports.Packager = Packager;