module.exports =
  
  # The "default" is run when you run "shampoo" without any arguments
  default:
    options: {
      watch: false
    }
    files:
      "./tmp/build.js": "./example/simple/alpha"

  # Run when you call "shampoo custom". Make as many custom builds as you want.
  custom:
    options: {}
    files:
      "./build.js": "./source"