Skip to content

Commit

Permalink
Merge pull request #36 from assemble/develop
Browse files Browse the repository at this point in the history
change plist deprecated method
  • Loading branch information
hariadi committed Aug 15, 2014
2 parents 41c779f + b5edaa8 commit 8afe7d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
2 changes: 1 addition & 1 deletion tasks/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

} else if (srcExt === '.plist') {

data = JSON.stringify(plist.parseFileSync(f.src[0]), null, options.indent);
data = JSON.stringify(plist.parse(grunt.file.read(f.src[0])), null, options.indent);

}

Expand Down

0 comments on commit 8afe7d2

Please sign in to comment.