VBScript Bundler
A VBScript bundler.
Installation
Install NodeJS.
npm install -g vbscript-bundler
Usage
Create the following folder structure:
.
├── dist
└── src
Add source VBScript files to the src folder.
At the root folder, run the following:
vbsb --entry ./src --output ./bundle.vbs
Source files will then be bundled to ./dist/bundle.vbs.
Options: -V, --version output the version number --entry <entry> entry point directory of source vbs files --output <output> bundled file output path --watch watch files
Files prefixed with ^
are appended to the beginning of the bunle.
Files prefiles with $
are appended to the end of the bundle.
Files ending in .Spec.vbs
and .Test.vbs
are excluded from the bundle.