open-consul/ui-v2/blueprints/css-component/index.js

28 lines
458 B
JavaScript

'use strict';
const path = require('path');
module.exports = {
description: 'Generates a CSS component',
availableOptions: [],
root: __dirname,
fileMapTokens(options) {
return {
__path__() {
return path.join('styles', 'components');
}
};
},
locals(options) {
// Return custom template variables here.
return {
};
}
// afterInstall(options) {
// // Perform extra work here.
// }
};