Ensure build command csp cannot be combined with others like underscore.

Former-commit-id: 97b6bd973323e086f1b6fdf3e40a7732804e2669
This commit is contained in:
John-David Dalton
2013-07-22 07:16:04 -07:00
parent 769ff84a65
commit 2c772d0f4c
3 changed files with 5 additions and 4 deletions

View File

@@ -505,6 +505,7 @@
});
commands = [
'csp backbone',
'mobile underscore',
'modern template=./*.jst'
];
@@ -1646,7 +1647,7 @@
})
);
var reNonCombinable = /\b(?:backbone|legacy|mobile|modern|underscore)\b/;
var reNonCombinable = /\b(?:backbone|csp|legacy|mobile|modern|underscore)\b/;
commands.forEach(function(origCommand) {
_.each(['', 'mobile', 'modern', 'underscore'], function(otherCommand) {