UNPKG

453 BJavaScriptView Raw
1/**
2 * Apeman task contribution plugin to change file permissions.
3 * @module apeman-task-contrib-chmod
4 * @see https://github.com/apeman-repo/apeman
5 */
6
7"use strict";
8
9/**
10 * Change file permissions.
11 * @function apemanTaskContribChmod
12 * @param {stirng|string[]} expression - Mode expression like "755 bin/*.sh"..
13 * @param {object} options - Optional setting.
14 * @returns {function} [task] - Task function.
15 */
16module.exports = require('./create');