Skip to content

Commit

Permalink
Updating internal
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Apr 6, 2016
1 parent 147f51b commit 985cc7f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 20 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -7,8 +7,9 @@ node_js:
- "5"
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi
matrix:
fast_finish: true
cache:
directories:
- node_modules
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -52,15 +52,15 @@ There are three formats you can use to run this task.
#### Short

```js
clean: ["path/to/dir/one", "path/to/dir/two"]
clean: ['path/to/dir/one', 'path/to/dir/two']
```

#### Medium (specific targets with global options)

```js
clean: {
build: ["path/to/dir/one", "path/to/dir/two"],
release: ["path/to/another/dir/one", "path/to/another/dir/two"]
build: ['path/to/dir/one', 'path/to/dir/two'],
release: ['path/to/another/dir/one', 'path/to/another/dir/two']
},
```

Expand All @@ -69,7 +69,7 @@ clean: {
```js
clean: {
build: {
src: ["path/to/dir/one", "path/to/dir/two"]
src: ['path/to/dir/one', 'path/to/dir/two']
}
}
```
Expand Down Expand Up @@ -104,7 +104,7 @@ clean: {
```js
// Deletes all .js files, but skips min.js files
clean: {
js: ["path/to/dir/*.js", "!path/to/dir/*.min.js"]
js: ['path/to/dir/*.js', '!path/to/dir/*.min.js']
}
```

Expand Down Expand Up @@ -160,4 +160,4 @@ clean: {

Task submitted by [Tim Branyen](http://tbranyen.com/)

*This file was generated on Fri Mar 18 2016 18:47:13.*
*This file was generated on Tue Apr 05 2016 18:06:38.*
34 changes: 24 additions & 10 deletions appveyor.yml
@@ -1,30 +1,44 @@
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
# 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
- x64
platform: x86

install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm install -g grunt-cli
- 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

test_script:
# Output useful info for debugging.
# 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
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"devDependencies": {
"dir-compare": "0.0.2",
"grunt": "^1.0.0",
"grunt-contrib-internal": "^0.4.10",
"grunt-contrib-internal": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0"
},
Expand Down

0 comments on commit 985cc7f

Please sign in to comment.