mirror of
https://github.com/nasa/openmct.git
synced 2025-01-21 03:55:31 +00:00
[API] Fix whitespace of bundle rewrites
This commit is contained in:
parent
9ebafa157b
commit
792fda48e3
@ -7,7 +7,9 @@ var glob = require('glob'),
|
||||
|
||||
function indent(str) {
|
||||
return str.split('\n').map(function (line, index) {
|
||||
return index === 0 ? line : (' ' + line);
|
||||
return index === 0 ? line : (' ' + line);
|
||||
}).filter(function (line) {
|
||||
return line.trim().length > 0;
|
||||
}).join('\n');
|
||||
}
|
||||
|
||||
@ -17,7 +19,7 @@ function rebundle(file) {
|
||||
outputFile = file.replace(".json", ".js"),
|
||||
contents = [
|
||||
header,
|
||||
"legacyRegistry.register(\"",
|
||||
" legacyRegistry.register(\"",
|
||||
bundleName,
|
||||
"\", ",
|
||||
indent(plainJson),
|
||||
|
Loading…
Reference in New Issue
Block a user