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 56edffc commit 443694aCopy full SHA for 443694a
src/deprecations.js
@@ -73,7 +73,7 @@ if (process.env.NODE_ENV !== 'production') {
73
)
74
},
75
76
- MUTI_CLAUSES: function () {
+ MULTI_CLAUSES: function () {
77
warn(
78
'Directives will no longer support multiple clause syntax in 1.0.0.' +
79
newBindingSyntaxLink
src/parsers/directive.js
@@ -182,8 +182,8 @@ exports.parse = function (s) {
182
183
cache.put(s, dirs)
184
185
- if (dirs.length > 1) {
186
- _.deprecation.MUTI_CLAUSES()
+ if (process.env.NODE_ENV !== 'production' && dirs.length > 1) {
+ _.deprecation.MULTI_CLAUSES()
187
}
188
189
return dirs
0 commit comments