grunt-npm

WebJar for grunt-npm

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

grunt-npm
Last Version

Last Version

0.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

grunt-npm
WebJar for grunt-npm
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/vojtajina/grunt-npm

Download grunt-npm

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/grunt-npm/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>grunt-npm</artifactId>
    <version>0.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/grunt-npm/
implementation 'org.webjars.npm:grunt-npm:0.0.2'
// https://jarcasting.com/artifacts/org.webjars.npm/grunt-npm/
implementation ("org.webjars.npm:grunt-npm:0.0.2")
'org.webjars.npm:grunt-npm:jar:0.0.2'
<dependency org="org.webjars.npm" name="grunt-npm" rev="0.0.2">
  <artifact name="grunt-npm" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='grunt-npm', version='0.0.2')
)
libraryDependencies += "org.webjars.npm" % "grunt-npm" % "0.0.2"
[org.webjars.npm/grunt-npm "0.0.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

grunt-npm

**A set of Grunt tasks for dealing with NPM.

Installation

Install npm package, next to your project's Gruntfile.js file:

npm install grunt-npm --save-dev

Add this line to your project's Gruntfile.js:

grunt.loadNpmTasks('grunt-npm');

Tasks

grunt npm-show (also aliased as show)

Show all the files that would be published to NPM. This is useful if you wanna make sure you are not publishing files you don't want to...

grunt npm-publish (also aliased as publish)

Configuration

'npm-publish': {
  options: {
    // list of tasks that are required before publishing
    requires: ['build'],
    // if the workspace is dirty, abort publishing (to avoid publishing local changes)
    abortIfDirty: true,
    // can also be a function that returns NPM tag (eg. to determine canary/latest tag based on the version)
    tag: 'canary'
  }
}

grunt npm-contributors (also aliased as contributors)

Update contributors in package.json - all developers who commited to the repository, sorted by number of commits. A .mailmap file can be used to map multiple emails to a single person.

Configuration

'npm-contributors': {
  options: {
    file: 'package.json',
    commit: true,
    commitMessage: 'Update contributors'
  }
}

Versions

Version
0.0.2