From 8f5d4f78cb110e12c9cc161d66c1b6bf15232d45 Mon Sep 17 00:00:00 2001 From: lsuchanek Date: Fri, 15 Apr 2016 16:54:58 +0200 Subject: [PATCH 1/2] Fix path to casperjs --- tasks/phantomcss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/phantomcss.js b/tasks/phantomcss.js index 2b59197..71bc8a8 100644 --- a/tasks/phantomcss.js +++ b/tasks/phantomcss.js @@ -12,7 +12,7 @@ var tmp = require('tmp'); var phantomBinaryPath = require('phantomjs-prebuilt').path; var runnerPath = path.join(__dirname, '..', 'phantomjs', 'runner.js'); var phantomCSSPath = path.join(__dirname, '..', 'node_modules', 'phantomcss'); -var casperPath = path.join(__dirname, '..', 'node_modules', 'casperjs'); +var casperPath = path.join(__dirname, '..', 'node_modules', 'phantomcss', 'node_modules', 'casperjs'); module.exports = function(grunt) { grunt.registerMultiTask('phantomcss', 'CSS Regression Testing', function() { From 0114b375125dbd266d157895252e0dcc2f7cd95b Mon Sep 17 00:00:00 2001 From: Ladislav Suchanek Date: Fri, 15 Apr 2016 18:09:37 +0200 Subject: [PATCH 2/2] New version 0.3.0-fix --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dbf94e0..47f2693 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "grunt-phantomcss", + "name": "grunt-phantomcss-ls", "description": "Plugin to do CSS regression testing via PhantomCSS.", - "version": "0.3.0", + "version": "0.3.0-fix", "homepage": "https://github.com/chrisgladd/grunt-phantomcss", "author": { "name": "Chris Gladd",