24 lines
452 B
JavaScript
24 lines
452 B
JavaScript
/*eslint node/no-extraneous-require: "off"*/
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
module.exports = {
|
|
description: 'Generates a Consul HTTP ember-data serializer',
|
|
|
|
availableOptions: [{ name: 'base-class', type: String }],
|
|
|
|
root: __dirname,
|
|
|
|
fileMapTokens(options) {
|
|
},
|
|
locals(options) {
|
|
// Return custom template variables here.
|
|
return {
|
|
};
|
|
}
|
|
|
|
// afterInstall(options) {
|
|
// // Perform extra work here.
|
|
// }
|
|
};
|