32 lines
529 B
JavaScript
32 lines
529 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
module.exports = {
|
|
description: 'Generates a Consul repository',
|
|
|
|
availableOptions: [],
|
|
|
|
root: __dirname,
|
|
|
|
fileMapTokens(options) {
|
|
return {
|
|
__path__() {
|
|
return path.join('services', 'repository');
|
|
},
|
|
};
|
|
},
|
|
locals(options) {
|
|
// Return custom template variables here.
|
|
return {};
|
|
},
|
|
|
|
// afterInstall(options) {
|
|
// // Perform extra work here.
|
|
// }
|
|
};
|