Skip to content

Commit a94794f

Browse files
Repo changed ownership.
1 parent 7d91db8 commit a94794f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* grunt-filerev-replace
3-
* https://github.com/SparkartGroupInc/grunt-filerev-replace
3+
* https://github.com/solidusjs/grunt-filerev-replace
44
*
55
* Copyright (c) 2013 Sparkart Group, Inc.
66
* Licensed under the MIT license.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
"name": "grunt-filerev-replace",
33
"description": "Replace references to grunt-filerev files.",
44
"version": "0.1.0",
5-
"homepage": "https://github.com/SparkartGroupInc/grunt-filerev-replace",
5+
"homepage": "https://github.com/solidusjs/grunt-filerev-replace",
66
"author": {
77
"name": "Joannic Laborde",
88
"email": "joannic@sparkart.com",
99
"url": "http://sparkart.com"
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace.git"
13+
"url": "https://github.com/solidusjs/grunt-filerev-replace.git"
1414
},
1515
"bugs": {
16-
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace/issues"
16+
"url": "https://github.com/solidusjs/grunt-filerev-replace/issues"
1717
},
1818
"licenses": [
1919
{
2020
"type": "MIT",
21-
"url": "https://github.com/SparkartGroupInc/grunt-filerev-replace/blob/master/LICENSE-MIT"
21+
"url": "https://github.com/solidusjs/grunt-filerev-replace/blob/master/LICENSE-MIT"
2222
}
2323
],
2424
"main": "Gruntfile.js",

tasks/filerev_replace.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* grunt-filerev-replace
3-
* https://github.com/SparkartGroupInc/grunt-filerev-replace
3+
* https://github.com/solidusjs/grunt-filerev-replace
44
*
55
* Copyright (c) 2013 Sparkart Group, Inc.
66
* Licensed under the MIT license.
@@ -10,8 +10,8 @@
1010

1111
var path = require('path');
1212

13-
var STARTING_DELIMITERS = '\'"\\(';
14-
var ENDING_DELIMITERS = '\'"\\)\\?#';
13+
var STARTING_DELIMITERS = '\'"\\(';
14+
var ENDING_DELIMITERS = '\'"\\)\\?#';
1515
var STARTING_DELIMITER = '([' + STARTING_DELIMITERS + '])';
1616
var ENDING_DELIMITER = '([' + ENDING_DELIMITERS + '])';
1717
var ASSET_PATH_START = '([^' + ENDING_DELIMITERS + ']*';

0 commit comments

Comments
 (0)