Pamela is written in typescript, to to be used it has to be compiled into normal javascript. Steps are:

  • Clean precedent build directories

  • Execute tests

  • Compile into es5 or commonjs

package.json includes a script for automating this steps. So to compile this framework just run:

npm run build
BASH

If you only want to clean precedent builds, use:

npm run clean
BASH