404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.14.146.45: ~ $
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.VueBuildRunner = void 0;
const chalk = require("chalk");
const build_1 = require("../../build");
const errors_1 = require("../../errors");
class VueBuildRunner extends build_1.BuildRunner {
    constructor(e) {
        super();
        this.e = e;
    }
    async getCommandMetadata() {
        return {};
    }
    createOptionsFromCommandLine(inputs, options) {
        const baseOptions = super.createBaseOptionsFromCommandLine(inputs, options);
        return {
            ...baseOptions,
            type: 'vue',
        };
    }
    async buildProject(options) {
        const cli = this.getPkgManagerBuildCLI();
        if (!await cli.resolveScript()) {
            throw new errors_1.RunnerException(`Cannot perform build.\n` +
                `Since you're using the ${chalk.bold('Vue')} project type, you must provide the ${chalk.green(cli.script)} npm script so the Ionic CLI can build your project.`);
        }
        await cli.build(options);
    }
}
exports.VueBuildRunner = VueBuildRunner;

Filemanager

Name Type Size Permission Actions
build.d.ts File 556 B 0644
build.js File 1.07 KB 0644
index.d.ts File 546 B 0644
index.js File 2.3 KB 0644
serve.d.ts File 498 B 0644
serve.js File 1.49 KB 0644