File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @lgraubner/w3c-validator" ,
3- "version" : " 1.0.1 " ,
3+ "version" : " 1.0.2 " ,
44 "description" : " Crawls a given site and checks for W3C validity." ,
55 "homepage" : " https://github.com/lgraubner/node-w3c-validator" ,
66 "author" :
" Lars Graubner <[email protected] >" ,
Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22
3- var Crawler = require ( "simplecrawler" ) ,
4- fs = require ( "fs" ) ,
5- program = require ( "commander" ) ,
6- chalk = require ( "chalk" ) ,
7- request = require ( "request" ) ,
8- pkg = require ( "./package.json" ) ;
3+ var Crawler = require ( "simplecrawler" ) ;
4+ var fs = require ( "fs" ) ;
5+ var program = require ( "commander" ) ;
6+ var chalk = require ( "chalk" ) ;
7+ var request = require ( "request" ) ;
8+ var pkg = require ( "./package.json" ) ;
99
1010program . version ( pkg . version )
1111 . usage ( "<url>" )
@@ -15,11 +15,11 @@ if (!program.args[0]) {
1515 program . help ( ) ;
1616}
1717
18- var chunk = [ ] ,
19- count = 0 ,
20- valid = 0 ,
21- invalid = 0 ,
22- c = new Crawler ( program . args [ 0 ] ) ;
18+ var chunk = [ ] ;
19+ var count = 0 ;
20+ var valid = 0 ;
21+ var invalid = 0 ;
22+ var c = new Crawler ( program . args [ 0 ] ) ;
2323
2424c . initialPath = "/" ;
2525c . initialPort = 80 ;
You can’t perform that action at this time.
0 commit comments