shark-core
v0.9.0
Published
The flexible build system
Downloads
7
Readme
Shark
Getting Started
1. Install shark-cli globally:
$ npm install shark-cli -g
2. Add next line to your ~/.bashrc or ~/.zshrc to enable shark tab-completion
. <(shark completion)
3. Install shark in your project devDependencies:
$ npm install shark-core --save-dev
4. Create a sharkfile.js
at the root of your project:
'use strict';
const path = require('path');
const Shark = require('shark-core');
const shark = Shark({
tasksPath: path.join(__dirname, './shark/tasks')
});
module.exports = shark;
4. Run shark:
$ shark