Skip to content

Commit

Permalink
Merge branch 'release/v0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicdoe committed Mar 5, 2014
2 parents 989d51f b8ddfdc commit 6b04bf7
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 1,14 @@
# http://editorconfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.coffee]
indent_style = tab

[*.yml]
indent_style = space
indent_size = 2
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,13 @@
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
install:
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
- "npm install -g grunt-cli"
- "npm install"
- "./node_modules/.bin/node-gyp install"
matrix:
allow_failures:
- node_js: "0.11"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
Copyright (c) 2013, Jakob Krigovsky
Copyright (c) 2013–2014, Jakob Krigovsky
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 118,7 @@ $ ./node_modules/.bin/node-gyp install

## Release History

- v0.3.0: Update `node-gyp` to `0.13.x`
- v0.2.1: Hotfix because v0.2.0 didn’t include the main task file `gyp.js`
- v0.2.0: Update `node-gyp` to `0.12.x`
- v0.1.0: Initial release
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
{
"name": "grunt-node-gyp",
"version": "0.2.1",
"version": "0.3.0",
"author": "Jakob Krigovsky <[email protected]>",
"description": "Run node-gyp commands from Grunt.",
"contributors": [
Expand All @@ -17,6 17,7 @@
],
"scripts": {
"prepublish": "grunt package",
"postpublish": "printf '\\e[1;31mRemember to check if the published package contains all necessary files!\\e[0m\\n'",
"test": "grunt test"
},
"repository": {
Expand All @@ -29,7 30,7 @@
"build"
],
"dependencies": {
"node-gyp": "0.12.x"
"node-gyp": "0.13.x"
},
"peerDependencies": {
"grunt": "~0.4"
Expand Down

0 comments on commit 6b04bf7

Please sign in to comment.