Suppose I want to use the webapp preset and add something before (or after) the ts task:
const { taskPresets, chain } = require('just-scripts');
taskPresets.webapp();
chain('some-task').before('ts');
If I run just-scripts ts, my additional task will run. But if I do just-scripts build (which contains ts), it won't run my additional task.
So...extensible task configs? :D
Suppose I want to use the
webapppreset and add something before (or after) thetstask:If I run
just-scripts ts, my additional task will run. But if I dojust-scripts build(which containsts), it won't run my additional task.So...extensible task configs? :D