apeman-task-contrib-chmod

Apeman task contribution plugin to change file permissions.


Keywords
apeman, task, contribution, chmod
License
MIT
Install
npm install apeman-task-contrib-chmod@2.1.2

Documentation

apeman-task-contrib-chmod

Build Status Code Climate Code Coverage npm version

Apeman task contribution plugin to change file permissions.

Installation

Install module via npm

$ npm install apeman-task-contrib-chmod --save-dev

Usage

Define a task at $tasks property in you Apemanfile.

/**
 * This is example Apemanfile to use "apeman-task-contrib-chmod".
 */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $tasks: {
        // Define your own task.
        "my-task-01": require('apeman-task-contrib-chmod')([
            "755 bin/**/*.sh", 
            "755 ci/bin/**/*.sh"
        ], {

        });
    }
};

Then, run the task via apeman task command.

# Run the task from CLI.
$ apeman task "my-task-01"

Option

Name Type Description

License

This software is released under the MIT License.

Links