Task run in a sandbox that make it can force run when error happens. Mod.js have a global project-level and task-level `force` option: ``` js // Modfile.js module.exports = { force: true, // project-level tasks: { mytask: { force: true // task-level } } } ```
Task run in a sandbox that make it can force run when error happens.
Mod.js have a global project-level and task-level
forceoption: