Skip to content
/ purp Public

Some kind of CLI for building PureScript projects with Psc-Package

License

Notifications You must be signed in to change notification settings

justinwoo/purp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

purp

Build Status

Some kind of CLI for building PureScript projects with Psc-Package

Usage

Run purp once to see the options:

Usage: purp (build | test | bundle | make-module | version)

Commands:
  build [[passthrough args]]
    Build the project, with passthrough args to purp.
  test [-m Your.Test.Module.Name]
    Test the project with some module, default Test.Main.
  bundle [bundle options]
    Bundle the project, with optional main and target path arguments
  make-module [bundle options]
    Make a CommonJS module by running bundle first
Bundle options (for bundle and make-module):
  -m
    Specify main module e.g. Main
  -o
    Specify output path e.g. index.js

FAQ

Where do I get "do action on watch files?"

Maybe one is better off using something like https://github.com/watchexec/watchexec?