Registry / devops / vbs-bundler

vbs-bundler

JSON →
library0.0.1jsnpmunverified

vbs-bundler (v0.0.1) is a CLI tool for bundling multiple VBScript source files into a single output file. It allows ordering via filename prefixes (`^` for beginning, `$` for end) and automatically excludes test files (`.Spec.vbs`, `.Test.vbs`). The package is minimal and early-stage, with no active development history. It requires Node.js and is installed globally, offering basic bundling and watch mode.

npm install vbs-bundler
INSTALL
IMPORT
SIG · VBS-BUNDLER
V
vbs-bundler
devopsjavascriptv0.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Initializes a project, creates sample VBScript source files with ordering prefixes, installs the bundler globally, and bundles them into a single output file.

mkdir -p src dist cd src echo "' ^header.vbs - at beginning" > ^header.vbs echo "MsgBox ""Bundled!""" >> main.vbs echo "' $footer.vbs - at end" > $footer.vbs cd .. npm install -g vbscript-bundler vbsb --entry ./src --output ./dist/bundle.vbs cat ./dist/bundle.vbs
vbs-bundler --version
Debug
Known issues
gotchaEntry must be a directory, not a single file. Using a file path as --entry will fail silently or produce empty bundle.
fix
Provide a directory path containing the source .vbs files.
affects: 0.0.1
Errors
Common errors & fixes
'vbsb' is not recognized as an internal or external command
Package not installed globally or not in PATH.
fix
Run 'npm install -g vbscript-bundler' and ensure global npm bin directory is in PATH.
Upgrade
Version history
0.0.1latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
vbs-bundler — npm install vbs-bundler · libregistry