UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

41 lines (36 loc) 1.37 kB
'use strict'; const Command = require('../models/command'); const Win = require('../utilities/windows-admin'); module.exports = Command.extend({ name: 'build', description: 'Builds your app and places it into the output path (dist/ by default).', aliases: ['b'], availableOptions: [ { name: 'environment', type: String, default: 'development', aliases: ['e', { dev: 'development' }, { prod: 'production' }], description: 'Possible values are "development", "production", and "test".', }, { name: 'output-path', type: 'Path', default: 'dist/', aliases: ['o'] }, { name: 'watch', type: Boolean, default: false, aliases: ['w'] }, { name: 'watcher', type: String }, { name: 'suppress-sizes', type: Boolean, default: false }, ], run(commandOptions) { return Win.checkIfSymlinksNeedToBeEnabled(this.ui) .then(() => { let buildTaskName = commandOptions.watch ? 'BuildWatch' : 'Build'; return this.runTask(buildTaskName, commandOptions); }) .then(() => { let isProduction = commandOptions.environment === 'production' || process.env.EMBER_ENV === 'production'; if (!commandOptions.suppressSizes && isProduction) { return this.runTask('ShowAssetSizes', { outputPath: commandOptions.outputPath, }); } }); }, });