Goat is a simple to use taskrunner for frontend development.
Instead of defining and maintaining separate setups for compiling, linting and building your code, goat aims to have a predefined, flexible setup that's easy to initialize and to keep up to date.
Goat contains modules which define tasks. Per project you can choose which tasks you want to configure. Each module defines tasks which can be run manually or, if supported, use the integrated watch flag to watch relevant files and run the tasks when a change is detected.
Also goat includes an integrated watch command which combines all watch enabled tasks in one command.
Currently Goat includes several tasks:
A complete workflow to compile your SASS/SCSS. It Integrates an autoprefixer, compass support and a minifier.
Automatically compile your ES6 to ES5 compatible code. Files suffixed with .es6.js
will be detected and converted to work according to the defined browser support settings.
Lint files suffixed with .es6.js
according to the AirBnB standard
Generate custom modernizr.js files by analizing your css and js files.
Initialize a styleguide using Fractal.
Goat modules are installable directly from Goat itself. By running goat settings add MODULE_NAME
, goat will install the module (npm package) globaly on your system and add it to the configuration. After this, the module can be used on your system.
To start using goat in your project, just run goat init
.
Run goat
to display the help which lists all the available tasks.
Run all watch enabled tasks simultaneously typing goat watch
in your terminal.
Each goat module must include two things.
goat
property inside the package.json
"goat": {
"name": "Module name",
"description": "Brief description of the functionality"
}module.exports = function my_module(Goat) {
return new Goat({
name: 'My Module',
command: 'my-module',
description: 'a example module',
schema: require('./src/schema'), // localtion of a schema describing the module config
method: (config) => {
// method to be executed
},
watch: (config) => {
// Optional method which is executed when the -w flag is added or by running goat watch
// config includes a event watch property
const { events } = config;
events.watch({
name: 'Watch event',
pattern: '**/*.s+(a|c)ss',
events: /file:/,
method: () => {
//method to be executed
},
});
},
init: {
configuration: require('./init/configuration.json'), // default configuration for your module
},
});
};
All code released under MIT