27bb03bbc0
* adding copyright header * fix fmt and a test
14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
name: require('./package').name,
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
};
|