Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
powerivq committed Jan 7, 2021
1 parent db30bf9 commit b2b5b4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build-system/tasks/runtime-test/helpers-unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ function extractCssJsFileMap() {
*/
function getImports(jsFile) {
const jsFileContents = fs.readFileSync(jsFile, 'utf8');
const {imports} = listImportsExports.parse(jsFileContents, ['importAssertions']);
const {imports} = listImportsExports.parse(jsFileContents, [
'importAssertions',
]);
const files = [];
const jsFileDir = path.dirname(jsFile);
imports.forEach(function (file) {
Expand Down

0 comments on commit b2b5b4b

Please sign in to comment.