@yaronkoresh/bundler
v1.0.0
Published
A code bundler
Downloads
1
Readme
NPM Package: @yaronkoresh/bundler
Code bundler:
- Currently supports C/C++ only
Example:
const {Bundle} = require("@yaronkoresh/bundler");
const inputFile = "main.c";
const outputFile = "bundle.c";
const directory = "C:/Users/User/Documents"
Bundle(inputFile,outputFile,directory);