lakesjs

1.0.5 • Public • Published

LakesJS - The efficient JavaScript build tool.
Lakes CLI - The Lakes CLI is a very powerful tool for lakes:
You can install it with:

npm i -g lakesjs

You can then run

lake -h

This will display a help message. You can simply run

lake

To execute your lakefile.js
You can initiate a project with:

lake -i|--i|-init|--init

What is a lakefile?
A lakefile is how we parse tasks, all tasks are placed in that file. To create a task you can execute a callback, so you can put whatever JavaScript code you want.
Lakefile methods

const { task, series, run } = require('lakesjs');
const test = task("task name", "task description", () => {
    //Callback function to execute
});
series(test) //Executed test, you can add more by creating more tasks and adding more params
run() //Executes all tasks

NOTE: Lakes automatically installs a local version of the dependency to create the lakefile.

Package Sidebar

Install

npm i lakesjs

Weekly Downloads

2

Version

1.0.5

License

ISC

Unpacked Size

5 kB

Total Files

5

Last publish

Collaborators

  • salvage_dev