single-file-cli 1.0.62 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -92,10 +92,6 @@ exports.get = async options => {
|
|
|
92
92
|
return scripts;
|
|
93
93
|
};
|
|
94
94
|
|
|
95
|
-
exports.getInfobarScript = () => {
|
|
96
|
-
return readScriptFile("lib/single-file-infobar.js", basePath);
|
|
97
|
-
};
|
|
98
|
-
|
|
99
95
|
async function readScriptFiles(paths, basePath = "../../../") {
|
|
100
96
|
return (await Promise.all(paths.map(path => readScriptFile(path, basePath)))).join("");
|
|
101
97
|
}
|