Skip to content
This repository has been archived by the owner on Dec 6, 2019. It is now read-only.

Fix path to casperjs #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tasks/phantomcss.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down