* Refactor CodeMirror component to be more configurable and testable (hints, markings) * Update the existing datasource path component * Better text highlighting for JSON fields * Case insensitive hinting in autocomplete
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
module.exports = {
|
|
process() {
|
|
return "module.exports = {};";
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return "svgTransform";
|
|
},
|
|
};
|