File tree 6 files changed +31
-3
lines changed
6 files changed +31
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.62.0
2
+
3
+ * Deprecate the use of multiple ` !global ` or ` !default ` flags on the same
4
+ variable. This deprecation is named ` duplicate-var-flags ` .
5
+
1
6
## 1.61.0
2
7
3
8
* ** Potentially breaking change:** Drop support for End-of-Life Node.js 12.
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ enum Deprecation {
54
54
deprecatedIn: '1.56.0' ,
55
55
description: 'Passing invalid units to built-in functions.' ),
56
56
57
+ duplicateVariableFlags ('duplicate-var-flags' ,
58
+ deprecatedIn: '1.62.0' ,
59
+ description:
60
+ 'Using !default or !global multiple times for one variable.' ),
61
+
57
62
/// Deprecation for `@import` rules.
58
63
import.future ('import' , description: '@import rules.' ),
59
64
Original file line number Diff line number Diff line change @@ -230,11 +230,25 @@ abstract class StylesheetParser extends Parser {
230
230
while (scanner.scanChar ($exclamation)) {
231
231
var flag = identifier ();
232
232
if (flag == 'default' ) {
233
+ if (guarded) {
234
+ logger.warnForDeprecation (
235
+ Deprecation .duplicateVariableFlags,
236
+ '!default should only be written once for each variable.\n '
237
+ 'This will be an error in Dart Sass 2.0.0.' ,
238
+ span: scanner.spanFrom (flagStart));
239
+ }
240
+
233
241
guarded = true ;
234
242
} else if (flag == 'global' ) {
235
243
if (namespace != null ) {
236
244
error ("!global isn't allowed for variables in other modules." ,
237
245
scanner.spanFrom (flagStart));
246
+ } else if (global) {
247
+ logger.warnForDeprecation (
248
+ Deprecation .duplicateVariableFlags,
249
+ '!global should only be written once for each variable.\n '
250
+ 'This will be an error in Dart Sass 2.0.0.' ,
251
+ span: scanner.spanFrom (flagStart));
238
252
}
239
253
240
254
global = true ;
Original file line number Diff line number Diff line change
1
+ ## 6.3.0
2
+
3
+ * No user-visible changes.
4
+
1
5
## 6.2.0
2
6
3
7
* No user-visible changes.
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: sass_api
2
2
# Note: Every time we add a new Sass AST node, we need to bump the *major*
3
3
# version because it's a breaking change for anyone who's implementing the
4
4
# visitor interface(s).
5
- version : 6.2.0
5
+ version : 6.3.0-dev
6
6
description : Additional APIs for Dart Sass.
7
7
homepage : https://github.com/sass/dart-sass
8
8
9
9
environment :
10
10
sdk : " >=2.17.0 <3.0.0"
11
11
12
12
dependencies :
13
- sass : 1.61 .0
13
+ sass : 1.62 .0
14
14
15
15
dev_dependencies :
16
16
dartdoc : ^5.0.0
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.61.0
2
+ version : 1.62.0-dev
3
3
description : A Sass implementation in Dart.
4
4
homepage : https://github.com/sass/dart-sass
5
5
You can’t perform that action at this time.
0 commit comments