This repository was archived by the owner on May 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Support version 1.0.0-beta.11 of the Sass embedded protocol:
4
4
* Support ` VersionRequest ` and ` VersionResponse ` .
5
+ * Support ` CompileRequest.quiet_deps ` and ` .verbose ` .
5
6
* Set ` CanonicalizeRequest.from_import ` .
6
7
7
8
* Properly throw errors for range checks for colors.
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ void main(List<String> args) {
67
67
syntax: syntaxToSyntax (input.syntax),
68
68
style: style,
69
69
url: input.url.isEmpty ? null : input.url,
70
+ quietDeps: request.quietDeps,
71
+ verbose: request.verbose,
70
72
sourceMap: sourceMapCallback);
71
73
break ;
72
74
@@ -78,6 +80,8 @@ void main(List<String> args) {
78
80
importers: importers,
79
81
functions: globalFunctions,
80
82
style: style,
83
+ quietDeps: request.quietDeps,
84
+ verbose: request.verbose,
81
85
sourceMap: sourceMapCallback);
82
86
} on FileSystemException catch (error) {
83
87
return OutboundMessage_CompileResponse ()
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies:
14
14
async : " >=1.13.0 <3.0.0"
15
15
meta : ^1.1.0
16
16
protobuf : ^2.0.0
17
- sass : ^1.33 .0
17
+ sass : ^1.34 .0
18
18
source_maps : ^0.10.5
19
19
source_span : ^1.1.0
20
20
stack_trace : ^1.6.0
You can’t perform that action at this time.
0 commit comments