1.4.0 • Published 9 years ago

grunt-module v1.4.0

Weekly downloads
2
License
-
Repository
github
Last release
9 years ago

grunt-module

A Grunt plugin to easily release and publish your npm module.

license npm downloads

build code climate dependencies devDependencies

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-module --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-module');

The module task

Overview

In your project's Gruntfile, add a section named module to the data object passed into grunt.initConfig().

grunt.initConfig({
    module: {
        options: {
            // Task-specific options go here.
        },
        your_target: {
            // Target-specific file lists and/or options go here.
        }
    }
});

Options

options.branch

Type: string Default value: 'master'

The branch to release and publish from.

options.check

Type: boolean Default value: false

Check that the branch is on options.branch and the working tree is clean.

options.publish

Type: boolean Default value: false

Publish to the npm registry.

options.release

Type: boolean Default value: false

Make and push a Git tag/release.

Usage

This Grunt plugin works best in conjunction with a Grunt plugin like grunt-bumpup to update your project's npm version.

grunt.initConfig({
    bumpup: {
        options: {
            newlineEof: true
        },
        file: 'package.json'
    },
    module: {
        'check-repository': {
            options: {
                branch: 'master',
                check: true
            }
        },
        'release-publish': {
            options: {
                release: true,
                publish: true
            }
        }
    }
});

grunt.registerTask('test', [
    // ...
]);

grunt.registerTask('publish', function (type) {
    grunt.task.run('test');
    grunt.task.run('module:check-repository');
    grunt.task.run('bumpup:' + type);
    grunt.task.run('module:release-publish');
});

Running Tests

To run the test suite first install the development dependencies:

npm install

then run the tests:

npm test
1.4.0

9 years ago

1.3.0

9 years ago

1.2.2

9 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago