UNPKG

313 BJavaScriptView Raw
1/**
2 * This is example Apemanfile to use "apeman-task-contrib-chmod".
3 */
4
5"use strict";
6
7module.exports = {
8 $pkg: {/*...*/},
9 $tasks: {
10 // Define your own task.
11 "my-task-01": require('apeman-task-contrib-chmod')([
12 "755 bin/**/*.sh",
13 "755 ci/bin/**/*.sh"
14 ], {
15
16 });
17 }
18};
\No newline at end of file