-
Notifications
You must be signed in to change notification settings - Fork 511
CI: Configure AppVeyor #937
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: "{build}" | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version | ||
- node --version | ||
- npm --version | ||
- npm install | ||
|
||
test_script: | ||
- npm test | ||
|
||
build: off | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you give me link to this setting? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure: http://www.appveyor.com/docs/appveyor-yml (Ctrl+F, search for: '174') There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They use |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,32 +63,32 @@ | |
"cli-table": "~0.3.1", | ||
"colors": "~1.0.3", | ||
"commander": "~2.6.0", | ||
"esprima": "~1.2.4", | ||
"esprima": "~2.0.0", | ||
"esprima-harmony-jscs": "1.1.0-tolerate-import", | ||
"estraverse": "~1.9.0", | ||
"estraverse": "~1.9.1", | ||
"exit": "~0.1.2", | ||
"glob": "~4.3.5", | ||
"lodash.assign": "~3.0.0", | ||
"minimatch": "~2.0.0", | ||
"minimatch": "~2.0.1", | ||
"prompt": "~0.2.14", | ||
"strip-json-comments": "~1.0.1", | ||
"strip-json-comments": "~1.0.2", | ||
"supports-color": "~1.2.0", | ||
"vow": "~0.4.3", | ||
"vow-fs": "~0.3.1", | ||
"xmlbuilder": "~2.4.0" | ||
"vow": "~0.4.8", | ||
"vow-fs": "~0.3.4", | ||
"xmlbuilder": "~2.5.0" | ||
}, | ||
"devDependencies": { | ||
"browserify": "~8.1.1", | ||
"coveralls": "~2.11.1", | ||
"has-ansi": "~1.0.0", | ||
"browserify": "~8.1.3", | ||
"coveralls": "~2.11.2", | ||
"has-ansi": "~1.0.1", | ||
"jshint": "~2.6.0", | ||
"mocha": "~2.1.0", | ||
"regenerate": "~1.2.1", | ||
"rewire": "~2.1.0", | ||
"sinon": "~1.12.0", | ||
"rewire": "~2.1.5", | ||
"sinon": "~1.12.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is dependencies update required? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nops, just did it in a separate commit. All is working fine though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alrighty, it's fine, could merge it with it |
||
"unicode-7.0.0": "~0.1.5", | ||
"unit-coverage": "~3.3.0", | ||
"xml2js": "~0.4.2" | ||
"xml2js": "~0.4.4" | ||
}, | ||
"bin": { | ||
"jscs": "./bin/jscs" | ||
|
@@ -113,7 +113,7 @@ | |
}, | ||
"scripts": { | ||
"lint": "jshint . && node bin/jscs lib test bin publish", | ||
"test": "npm run lint && mocha", | ||
"test": "npm run lint && mocha --color", | ||
"coverage": "unit-coverage run -p common", | ||
"coverage-html": "unit-coverage run -p common -r html -o coverage.html", | ||
"browserify": "browserify --standalone JscsStringChecker lib/string-checker.js -o jscs-browser.js", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this line should be moved to install section (because it's about installation ;-)