We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a031e commit 25598e5Copy full SHA for 25598e5
buildFiles.js
@@ -4,7 +4,6 @@ import fs from "fs";
4
5
function getBuildFiles(externalFiles, debugLog) {
6
let buildFiles = [];
7
- exports.buildFiles = buildFiles;
8
if (externalFiles && externalFiles.length) {
9
externalFiles.forEach((externalFile) => {
10
if (!existsSync(externalFile)) {
index.js
@@ -2,6 +2,8 @@
2
3
"use strict";
+// Needed for coloring terminal output
+import colors from 'colors'
import semver from "semver";
import ora from "ora";
@@ -41,8 +43,6 @@ if (!buildFiles.length) {
41
43
process.exit();
42
44
}
45
-exports.debugLog = debugLog;
-
46
async function executeCommandAndWaitForExitCode(command, args) {
47
let commandExitCode;
48
0 commit comments