-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add XO and AVA Also did some cleanup and removed internal `grunt` plugins. * Fix test script on Windows
- Loading branch information
1 parent
6759219
commit 1f245ac
Showing
21 changed files
with
297 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
indent_style = tab | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[package.json] | ||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* text=auto | ||
*.js text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
node_modules | ||
npm-debug.log | ||
tmp | ||
tmp-cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "0.12" | ||
- "4" | ||
- "5" | ||
- "iojs" | ||
before_install: | ||
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi | ||
matrix: | ||
fast_finish: true | ||
cache: | ||
directories: | ||
- node_modules | ||
- '8' | ||
- '6' | ||
- '4' | ||
- '0.12' | ||
- '0.10' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,21 @@ | ||
# http://www.appveyor.com/docs/appveyor-yml | ||
|
||
clone_depth: 10 | ||
|
||
version: "{build}" | ||
|
||
# What combinations to test | ||
environment: | ||
matrix: | ||
- nodejs_version: "0.10" | ||
platform: x86 | ||
- nodejs_version: "0.12" | ||
platform: x86 | ||
- nodejs_version: "4" | ||
platform: x64 | ||
- nodejs_version: "4" | ||
platform: x86 | ||
- nodejs_version: "5" | ||
platform: x86 | ||
|
||
- nodejs_version: '8' | ||
- nodejs_version: '6' | ||
- nodejs_version: '4' | ||
- nodejs_version: '0.12' | ||
- nodejs_version: '0.10' | ||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
- ps: >- | ||
if ($env:nodejs_version -eq "0.10") { | ||
npm -g install npm@2 | ||
$env:PATH="$env:APPDATA\npm;$env:PATH" | ||
} | ||
- ps: Install-Product node $env:nodejs_version | ||
- set CI=true | ||
- npm -g install npm@latest | ||
- set PATH=%APPDATA%\npm;%PATH% | ||
- npm install | ||
|
||
test_script: | ||
# Output useful info for debugging | ||
- node --version && npm --version | ||
# We test multiple Windows shells because of prior stdout buffering issues | ||
# filed against Grunt. https://github.com/joyent/node/issues/3584 | ||
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging | ||
- cmd: npm test | ||
|
||
build: off | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
cache: | ||
- node_modules -> package.json | ||
build: off | ||
shallow_clone: true | ||
test_script: | ||
- node --version | ||
- npm --version | ||
- npm test |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.