We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203b23a commit 9a93a06Copy full SHA for 9a93a06
Gruntfile.js
@@ -75,7 +75,8 @@ var
75
"dist/jquery-ui.js",
76
"dist/jquery-ui.min.js"
77
]
78
- };
+ },
79
+ component = grunt.option( "component" ) || "**";
80
81
function mapMinFile( file ) {
82
return "dist/" + file.replace( /\.js$/, ".min.js" ).replace( /ui\//, "minified/" );
@@ -172,8 +173,7 @@ grunt.initConfig({
172
173
})
174
},
175
qunit: {
- files: expandFiles( "tests/unit/**/*.html" ).filter(function( file ) {
176
- // TODO except for all|index|test, try to include more as we go
+ files: expandFiles( "tests/unit/" + component + "/*.html" ).filter(function( file ) {
177
return !( /(all|index|test)\.html$/ ).test( file );
178
}),
179
options: {
0 commit comments