faust2pkgurl
v1.1.2
Published
Downloads
2
Readme
Faust2pkgurl
It a CLI-tool that converts a Faust program into using new pkgUrl format given a file that has the versions you want it to use
Installation
make sure you have
1- npm
2- node
npm i -g faust2pkgurl // to download faust2pkgurl globally
USAGE
$ faust2pkgurl FILE [-i] [-o <value>] [-l <value>]
ARGUMENTS
FILE Faust file to convert
FLAGS
-i, --inplace Modify the file in place
-l, --libraries=<value> JSON file with library versions
-o, --out=<value> Output file
DESCRIPTION
It converts a Faust program into using new pkgUrl format.
EXAMPLES
$ faust2pkgUrl main.dsp
$ faust2pkgUrl main.dsp -o main_pkg.dsp
$ faust2pkgUrl main.dsp -i
$ faust2pkgUrl main.dsp -l libraries.json
SEEING HOW IT WORKS
npm i -g faust2pkgurl
cd ./examples/example-1
faust2pkgurl main.dsp -l libVersion.json -o main_new.dsp