Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jul 30, 2024
1 parent 42b03d3 commit 95d5437
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion packages/html-manager/scripts/concat-amd-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
var fs = require('fs');

// Make a script file that defines all of the relevant AMD modules
var files = ['base.js', 'controls.js', 'base7.js', 'controls7.js', 'index.js', 'libembed-amd.js'];
var files = [
'base.js',
'controls.js',
'base7.js',
'controls7.js',
'index.js',
'libembed-amd.js',
];
var output = files
.map((f) => {
return fs.readFileSync('./dist/amd/' + f).toString();
Expand Down
2 changes: 1 addition & 1 deletion packages/html-manager/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export function requirePromise(pkg: string | string[]): Promise<any> {
require(pkg, resolve, reject);
}
});
};
}

0 comments on commit 95d5437

Please sign in to comment.