Skip to content

Commit 95d5437

Browse files
committed
Linter
1 parent 42b03d3 commit 95d5437

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

packages/html-manager/scripts/concat-amd-build.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
var fs = require('fs');
55

66
// Make a script file that defines all of the relevant AMD modules
7-
var files = ['base.js', 'controls.js', 'base7.js', 'controls7.js', 'index.js', 'libembed-amd.js'];
7+
var files = [
8+
'base.js',
9+
'controls.js',
10+
'base7.js',
11+
'controls7.js',
12+
'index.js',
13+
'libembed-amd.js',
14+
];
815
var output = files
916
.map((f) => {
1017
return fs.readFileSync('./dist/amd/' + f).toString();

packages/html-manager/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export function requirePromise(pkg: string | string[]): Promise<any> {
1212
require(pkg, resolve, reject);
1313
}
1414
});
15-
};
15+
}

0 commit comments

Comments
 (0)