Skip to content

Commit

Permalink
Repo changed ownership.
Browse files Browse the repository at this point in the history
  • Loading branch information
joanniclaborde committed Feb 13, 2014
1 parent 7d91db8 commit a94794f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* grunt-filerev-replace
* https://github.com/SparkartGroupInc/grunt-filerev-replace
* https://github.com/solidusjs/grunt-filerev-replace
*
* Copyright (c) 2013 Sparkart Group, Inc.
* Licensed under the MIT license.
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
"name": "grunt-filerev-replace",
"description": "Replace references to grunt-filerev files.",
"version": "0.1.0",
"homepage": "https://github.com/SparkartGroupInc/grunt-filerev-replace",
"homepage": "https://github.com/solidusjs/grunt-filerev-replace",
"author": {
"name": "Joannic Laborde",
"email": "[email protected]",
"url": "http://sparkart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace.git"
"url": "https://github.com/solidusjs/grunt-filerev-replace.git"
},
"bugs": {
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace/issues"
"url": "https://github.com/solidusjs/grunt-filerev-replace/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace/blob/master/LICENSE-MIT"
"url": "https://github.com/solidusjs/grunt-filerev-replace/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
Expand Down
6 changes: 3 additions & 3 deletions tasks/filerev_replace.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* grunt-filerev-replace
* https://github.com/SparkartGroupInc/grunt-filerev-replace
* https://github.com/solidusjs/grunt-filerev-replace
*
* Copyright (c) 2013 Sparkart Group, Inc.
* Licensed under the MIT license.
Expand All @@ -10,8 +10,8 @@

var path = require('path');

var STARTING_DELIMITERS = '\'"\\(';
var ENDING_DELIMITERS = '\'"\\)\\?#';
var STARTING_DELIMITERS = '\'"\\(';
var ENDING_DELIMITERS = '\'"\\)\\?#';
var STARTING_DELIMITER = '([' + STARTING_DELIMITERS + '])';
var ENDING_DELIMITER = '([' + ENDING_DELIMITERS + '])';
var ASSET_PATH_START = '([^' + ENDING_DELIMITERS + ']*';
Expand Down

0 comments on commit a94794f

Please sign in to comment.