Update devDependencies.
This commit is contained in:
parent
a5ba9e37c8
commit
394d3f7814
@ -4,7 +4,7 @@
|
|||||||
"eqeqeq": true,
|
"eqeqeq": true,
|
||||||
"eqnull": true,
|
"eqnull": true,
|
||||||
"immed": true,
|
"immed": true,
|
||||||
"latedef": true,
|
"latedef": false,
|
||||||
"newcap": true,
|
"newcap": true,
|
||||||
"noarg": true,
|
"noarg": true,
|
||||||
"node": true,
|
"node": true,
|
||||||
|
15
.travis.yml
15
.travis.yml
@ -1,6 +1,15 @@
|
|||||||
sudo: false
|
sudo: false
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- '5'
|
- "0.10"
|
||||||
- '4'
|
- "0.12"
|
||||||
- '0.10'
|
- "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
|
||||||
|
36
appveyor.yml
36
appveyor.yml
@ -1,28 +1,44 @@
|
|||||||
# AppVeyor file
|
|
||||||
# http://www.appveyor.com/docs/appveyor-yml
|
# http://www.appveyor.com/docs/appveyor-yml
|
||||||
|
|
||||||
version: "{build}"
|
|
||||||
|
|
||||||
clone_depth: 10
|
clone_depth: 10
|
||||||
|
|
||||||
|
version: "{build}"
|
||||||
|
|
||||||
|
# What combinations to test
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- nodejs_version: "5"
|
|
||||||
- nodejs_version: "4"
|
|
||||||
- nodejs_version: "0.10"
|
- 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
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: Install-Product node $env:nodejs_version
|
- 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"
|
||||||
|
}
|
||||||
- npm install
|
- npm install
|
||||||
|
|
||||||
build: off
|
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
|
# Output useful info for debugging
|
||||||
- node --version && npm --version
|
- node --version && npm --version
|
||||||
- npm test
|
# 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:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- 'node_modules -> package.json' # local npm modules
|
- node_modules -> package.json
|
||||||
|
13
package.json
13
package.json
@ -25,13 +25,12 @@
|
|||||||
"sprintf-js": "~1.0.3"
|
"sprintf-js": "~1.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "^0.4.5",
|
"grunt": "^1.0.1",
|
||||||
"grunt-cli": "^0.1.13",
|
"grunt-contrib-connect": "^1.0.1",
|
||||||
"grunt-contrib-connect": "^0.11.2",
|
"grunt-contrib-internal": "^1.1.0",
|
||||||
"grunt-contrib-internal": "^0.4.5",
|
"grunt-contrib-jshint": "^1.0.0",
|
||||||
"grunt-contrib-jshint": "^0.11.0",
|
"grunt-contrib-nodeunit": "^1.0.0",
|
||||||
"grunt-contrib-nodeunit": "^0.4.1",
|
"grunt-contrib-watch": "^1.0.0"
|
||||||
"grunt-contrib-watch": "^0.6.1"
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"gruntplugin",
|
"gruntplugin",
|
||||||
|
Loading…
Reference in New Issue
Block a user