https://github.com/alangpierce/js-cake
JavaScript-friendly fork of CoffeeScript's cake tool
https://github.com/alangpierce/js-cake
Last synced: 4 months ago
JSON representation
JavaScript-friendly fork of CoffeeScript's cake tool
- Host: GitHub
- URL: https://github.com/alangpierce/js-cake
- Owner: alangpierce
- License: mit
- Created: 2017-05-06T23:39:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-07T03:18:14.000Z (about 8 years ago)
- Last Synced: 2025-02-17T03:18:05.172Z (5 months ago)
- Language: JavaScript
- Size: 16.2 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# js-cake
This is a fork of the CoffeeScript `cake` tool that allows you to write your
Cakefile in JavaScript. It's useful for incrementally moving your code over to
JavaScript if you're already using `cake`.For example, you can have a `Cakefile.js` file with these contents:
```js
task('do-thing', 'Do a thing', () => {
console.log('Did a thing!');
});
```And then invoke it via:
```
js-cake do-thing
```