Skip to content

Commit

Permalink
renamed package to jshint, updated contributors, v0.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brentlintner committed Feb 26, 2011
1 parent 7118f74 commit 5ef7176
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## v0.1.3 - 26/02/2010

* enable require('jshint') when installed through npm
* omitted "node-" prefix in cli and npm package name
* bumped jshint to latest (b81e938959444dd2a9e2)

## v0.1.2 - 24/02/2010 ## v0.1.2 - 24/02/2010


* bumped jshint to latest (3b018b1e454d3917e33c) * bumped jshint to latest (3b018b1e454d3917e33c)
Expand Down
2 changes: 1 addition & 1 deletion HELP
@@ -1,4 +1,4 @@
Usage: node-jshint path path2 [options] Usage: jshint path path2 [options]


Options: Options:


Expand Down
1 change: 1 addition & 0 deletions LICENSE
Expand Up @@ -7,3 +7,4 @@ Copyright 2010 Brent Lintner


Contributors: Contributors:
Brent Lintner (http://github.com/brentlintner) Brent Lintner (http://github.com/brentlintner)
Marco Rogers (https://github.com/polotek)
6 changes: 2 additions & 4 deletions README.md
Expand Up @@ -4,13 +4,11 @@ A command line interface for jshint, with inspiration from nodelint (github.com/


## Install ## Install


npm install node-jshint npm install jshint

node-jshint


## Usage ## Usage


node-jshint path path2 [options] jshint path path2 [options]


## Options ## Options


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion build/lint.js
@@ -1,7 +1,7 @@
module.exports = function (files) { module.exports = function (files) {
var args = files && files.length > 0 ? files : ["build", "test", "lib"], var args = files && files.length > 0 ? files : ["build", "test", "lib"],
spawn = require('child_process').spawn, spawn = require('child_process').spawn,
cmd = spawn("node-jshint", args.concat(["--config", "build/lint.json"])), cmd = spawn("jshint", args.concat(["--config", "build/lint.json"])),
sys = require('sys'); sys = require('sys');
cmd.stdout.on('data', sys.print); cmd.stdout.on('data', sys.print);
cmd.stderr.on('data', sys.print); cmd.stderr.on('data', sys.print);
Expand Down
9 changes: 6 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{ {
"name": "node-jshint", "name": "jshint",
"version": "0.1.2", "version": "0.1.3",
"description": "a cli for jshint", "description": "a cli for jshint",
"homepage": "http://github.com/jshint/node-jshint", "homepage": "http://github.com/jshint/node-jshint",
"author": { "author": {
Expand All @@ -12,12 +12,15 @@
"name": "Brent Lintner", "name": "Brent Lintner",
"email": "brent.lintner@gmail.com", "email": "brent.lintner@gmail.com",
"url": "http://github.com/brentlintner" "url": "http://github.com/brentlintner"
},{
"name": "Marco Rogers",
"url": "https://github.com/polotek"
}], }],
"licenses": [{ "licenses": [{
"type": "MIT", "type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php" "url": "http://www.opensource.org/licenses/mit-license.php"
}], }],
"bin": "./bin/node-jshint", "bin": "./bin/jshint",
"main": "./packages/jshint/jshint", "main": "./packages/jshint/jshint",
"files": [ "files": [
"packages/jshint/README.markdown", "packages/jshint/README.markdown",
Expand Down

0 comments on commit 5ef7176

Please sign in to comment.