From 52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20L=2E=20=C5=A0ijanec?= Date: Wed, 29 Apr 2020 22:38:41 +0200 Subject: setting up folder structure --- test/jsbundle-test.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/jsbundle-test.c (limited to 'test/jsbundle-test.c') diff --git a/test/jsbundle-test.c b/test/jsbundle-test.c new file mode 100644 index 0000000..b63a0fd --- /dev/null +++ b/test/jsbundle-test.c @@ -0,0 +1,12 @@ +#include +#include +#include "jsbundle.c" + +extern int main(int argc, char* argv[]) { + if(argc != 4) { + printf("usage: %s bundle.js source_directory/ .js\n", argv[0]); + return 1; + } + bundle_js(argv[1], argv[2], argv[3]); + return 0; +} -- cgit v1.2.3