UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

17 lines (12 loc) 372 B
'use strict'; const Command = require('../models/command'); module.exports = Command.extend({ name: 'asset-sizes', description: 'Shows the sizes of your asset files.', availableOptions: [ { name: 'output-path', type: 'Path', default: 'dist/', aliases: ['o'] }, ], run(commandOptions) { return this.runTask('ShowAssetSizes', commandOptions); }, });