From 9ba9a1ca8bae1586ff15c53f75f05cd3de50680e Mon Sep 17 00:00:00 2001 From: Hariadi Hinta Date: Fri, 15 Aug 2014 22:40:00 +0800 Subject: [PATCH 1/2] change plist deprecated method --- tasks/convert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/convert.js b/tasks/convert.js index 1f93305..c3e001b 100644 --- a/tasks/convert.js +++ b/tasks/convert.js @@ -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); } From b5edaa87dca69a512a4a806699778f1c7c56ffa6 Mon Sep 17 00:00:00 2001 From: Hariadi Hinta Date: Fri, 15 Aug 2014 22:44:21 +0800 Subject: [PATCH 2/2] remove node < 0.8 please update your node --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 60bbd48..0ce3be2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: node_js node_js: - - "0.8" + - "0.10" before_script: - npm install -g grunt-cli \ No newline at end of file