1.0.0 • Published 6 years ago

@looped-lines/builderjs v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
6 years ago

Builder JS

A library for defining build scripts using Javascript

Developers

The tests should be executed inside a docker container. The docker file is included.

Bash Alias

If you are using bash please add the gulp-docker alias to the ~/.bashrc

alias gulp-docker='sudo docker run --env GITHUB_TOKEN=$(pass show github/Builder_JS_Tester_Token) --tty --volume $(pwd):/root/project/:z loopedlines/gulp'`

Fish Function

If you are using fish please:

  1. Add the gulp-docker function:
function gulp-docker
	sudo docker run --env GITHUB_TOKEN=(pass show github/Builder_JS_Tester_Token) --tty --volume (pwd):/root/project/:z loopedlines/gulp $argv
end
  1. Save the fish function:
funcsave gulp-docker