Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
add jslint to vcbuild.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Zinkovsky committed Mar 8, 2012
1 parent 31ad1d2 commit 0c68604
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions vcbuild.bat
Expand Up @@ -23,6 +23,7 @@ set test=
set test_args=
set msi=
set upload=
set jslint=

:next-arg
if "%1"=="" goto args-done
Expand All @@ -45,6 +46,7 @@ if /i "%1"=="test-all" set test=test-all&goto arg-ok
if /i "%1"=="test" set test=test&goto arg-ok
if /i "%1"=="msi" set msi=1&goto arg-ok
if /i "%1"=="upload" set upload=1&goto arg-ok
if /i "%1"=="jslint" set jslint=1&goto arg-ok

echo Warning: ignoring invalid command line option `%1`.

Expand All @@ -53,6 +55,7 @@ shift
goto next-arg
:args-done
if defined upload goto upload
if defined jslint goto jslint


:project-gen
Expand Down Expand Up @@ -126,6 +129,9 @@ if "%test%"=="test-all" set test_args=%test_args%

echo running 'python tools/test.py %test_args%'
python tools/test.py %test_args%

if "%test%"=="test" goto jslint

goto exit

:create-msvs-files-failed
Expand All @@ -145,6 +151,12 @@ scp Release\node.pdb node@nodejs.org:~/web/nodejs.org/dist/v%NODE_VERSION%/node.
@echo off
goto exit

:jslint
echo running jslint
set PYTHONPATH=tools/closure_linter/
python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ --exclude_files lib/punycode.js
goto exit

:help
echo vcbuild.bat [debug/release] [msi] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [nobuild] [nosign]
echo Examples:
Expand Down

0 comments on commit 0c68604

Please sign in to comment.