File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,10 @@ module.exports = function(grunt) {
39
39
"/* Build: v<%= pkg.version %> <%= grunt.template.today('dd-mmmm-yyyy hh:MM:ss') %> */"
40
40
} ,
41
41
build_dir : "build" ,
42
- //Parser lib copy for versions that can't use requirejs
42
+ //Parser lib copy for versions that can't user requirejs
43
43
parserlib : "node_modules/parserlib/lib/node-parserlib.js" ,
44
+ //clone copy for versions that can't user requirejs
45
+ clone : "node_modules/clone/clone.js" ,
44
46
//Core CSSLint files used by most versions
45
47
csslint_files : [
46
48
"src/core/CSSLint.js" ,
@@ -51,6 +53,7 @@ module.exports = function(grunt) {
51
53
//Core fileset used by most versions
52
54
core_files : [
53
55
"<%= parserlib %>" ,
56
+ "<%= clone %>" ,
54
57
"<%= csslint_files %>"
55
58
] ,
56
59
// Task configuration.
@@ -86,6 +89,7 @@ module.exports = function(grunt) {
86
89
node : {
87
90
options : {
88
91
banner : "<%= banner.full %>\n" +
92
+ "var clone = require('clone');\n" +
89
93
"var parserlib = require('parserlib');\n" ,
90
94
footer : "\nexports.CSSLint = CSSLint;"
91
95
} ,
You can’t perform that action at this time.
0 commit comments