README
Node.js Make
Work in progress
Like shelljs make but takes advantages of async / await in Node.js
Usage
makefile.js :
target.hello = async function() {
console.log("Hello world");
};
More to come...
Node.js make, use async/await with few helpers to script
<script type="module">
import nomake from 'https://cdn.skypack.dev/nomake';
</script>
Work in progress
Like shelljs make but takes advantages of async / await in Node.js
makefile.js :
target.hello = async function() {
console.log("Hello world");
};
More to come...