0.0.1 • Published 4 years ago

vbs-bundler v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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 for changes
  -h, --help         output usage information

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.