Skip to content

Commit 25598e5

Browse files
committed
fix: leftover commonjs exports
1 parent 52a031e commit 25598e5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

buildFiles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import fs from "fs";
44

55
function getBuildFiles(externalFiles, debugLog) {
66
let buildFiles = [];
7-
exports.buildFiles = buildFiles;
87
if (externalFiles && externalFiles.length) {
98
externalFiles.forEach((externalFile) => {
109
if (!existsSync(externalFile)) {

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
"use strict";
44

5+
// Needed for coloring terminal output
6+
import colors from 'colors'
57
import semver from "semver";
68
import ora from "ora";
79

@@ -41,8 +43,6 @@ if (!buildFiles.length) {
4143
process.exit();
4244
}
4345

44-
exports.debugLog = debugLog;
45-
4646
async function executeCommandAndWaitForExitCode(command, args) {
4747
let commandExitCode;
4848

0 commit comments

Comments
 (0)