We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6edef36 commit 7571028Copy full SHA for 7571028
lib/grunt/plugins.js
@@ -175,7 +175,6 @@ module.exports = function(grunt) {
175
grunt.task.requires(['build']);
176
177
var options = this.options({
178
- stableSuffix: '',
179
unstableSuffix: '-unstable',
180
cleanup: false
181
});
@@ -229,7 +228,7 @@ module.exports = function(grunt) {
229
228
}
230
231
// Skip file if it was already released
232
- var re = new RegExp('(' + options.stableSuffix + '|' + options.unstableSuffix + ')');
+ var re = new RegExp('(' + options.unstableSuffix + ')');
233
if (basename.match(re)) {
234
grunt.log.writeln("Skipping file: " + f);
235
return;
0 commit comments