https://github.com/pinefile/pine
Small JavaScript-based task runner for node.js
https://github.com/pinefile/pine
build-tool cli command-line hacktoberfest javascript make makefile pinefile task task-runner
Last synced: 2 months ago
JSON representation
Small JavaScript-based task runner for node.js
- Host: GitHub
- URL: https://github.com/pinefile/pine
- Owner: pinefile
- License: mit
- Created: 2020-09-07T20:02:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T01:48:10.000Z (2 months ago)
- Last Synced: 2025-03-20T02:40:54.149Z (2 months ago)
- Topics: build-tool, cli, command-line, hacktoberfest, javascript, make, makefile, pinefile, task, task-runner
- Language: TypeScript
- Homepage: https://pinefile.github.io
- Size: 3.38 MB
- Stars: 14
- Watchers: 1
- Forks: 3
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
- awesome - pinefile/pine - Small JavaScript-based task runner for node.js (TypeScript)
README
# Pine
[](https://github.com/pinefile/pine/actions) [](https://www.npmjs.com/package/@pinefile/pine)
Small JavaScript-based task runner for node.js.
## Docs
Read the documentation [here](https://pinefile.github.io/docs/)
## Basic usage
Create `pinefile.js` or `pinefile.ts`
```js
import { run } from '@pinefile/pine';export default {
build: () => {
console.log('Building...');
},
test: async () => {
await run('jest');
},
};
```Then run it! It is best to either place `pine` inside a npm run script or run it with `npx`:
```
npx pine build
```## License
MIT © [Fredrik Forsmo](https://github.com/frozzare)