UNPKG
sammich.js
Version:
alpha (3.0.0-alpha)
latest (3.0.1)
3.0.1
3.0.0
3.0.0-alpha
2.1.0
2.0.4
2.0.3
2.0.2
Too many JavaScript files? Put 'em in a sammich.
sammich.js
/
src
/
bin
/
main.js
15 lines
(11 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * The main entry point. */
async
function
main
()
{
const
args
= parseSammichArgs();
const
inputFilePaths =
args
.positionals;
const
outputFilePath =
args
.values.output;
await
bundleInputFilesFromPaths(inputFilePaths, outputFilePath); }
// Start the program.
main();