sass 1.63.5 → 1.63.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sass.dart.js +3 -3
- package/sass.node.mjs +28 -28
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.
|
|
1
|
+
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=14.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.6","bin":{"sass":"sass.js"},"main":"sass.node.js"}
|
package/sass.dart.js
CHANGED
|
@@ -21785,7 +21785,7 @@ self.util = _cliPkgRequires.util;
|
|
|
21785
21785
|
J.set$sassFalse$x(self.exports, B.SassBoolean_false0);
|
|
21786
21786
|
J.set$Exception$x(self.exports, $.$get$exceptionClass());
|
|
21787
21787
|
J.set$Logger$x(self.exports, {silent: {warn: A.allowInteropNamed("sass.Logger.silent.warn", new A.main_closure0()), debug: A.allowInteropNamed("sass.Logger.silent.debug", new A.main_closure1())}});
|
|
21788
|
-
J.set$info$x(self.exports, "dart-sass\t1.63.
|
|
21788
|
+
J.set$info$x(self.exports, "dart-sass\t1.63.6\t(Sass Compiler)\t[Dart]\ndart2js\t3.0.5\t(Dart Compiler)\t[Dart]");
|
|
21789
21789
|
A.updateSourceSpanPrototype();
|
|
21790
21790
|
J.set$render$x(self.exports, A.allowInteropNamed("sass.render", A.legacy__render$closure()));
|
|
21791
21791
|
J.set$renderSync$x(self.exports, A.allowInteropNamed("sass.renderSync", A.legacy__renderSync$closure()));
|
|
@@ -22508,7 +22508,7 @@ self.util = _cliPkgRequires.util;
|
|
|
22508
22508
|
switch ($async$goto) {
|
|
22509
22509
|
case 0:
|
|
22510
22510
|
// Function start
|
|
22511
|
-
$async$returnValue = "1.63.
|
|
22511
|
+
$async$returnValue = "1.63.6 compiled with dart2js 3.0.5";
|
|
22512
22512
|
// goto return
|
|
22513
22513
|
$async$goto = 1;
|
|
22514
22514
|
break;
|
|
@@ -42420,7 +42420,7 @@ self.util = _cliPkgRequires.util;
|
|
|
42420
42420
|
else
|
|
42421
42421
|
try {
|
|
42422
42422
|
argVersion = A.Version_Version$parse(id);
|
|
42423
|
-
sassVersion = A.Version_Version$parse("1.63.
|
|
42423
|
+
sassVersion = A.Version_Version$parse("1.63.6");
|
|
42424
42424
|
if (J.compareTo$1$ns(argVersion, sassVersion) > 0)
|
|
42425
42425
|
A.ExecutableOptions__fail("Invalid version " + A.S(argVersion) + ". --fatal-deprecation requires a version less than or equal to the current Dart Sass version.");
|
|
42426
42426
|
J.addAll$1$ax(deprecations, A.Deprecation_forVersion(argVersion));
|
package/sass.node.mjs
CHANGED
|
@@ -41,114 +41,114 @@ function defaultExportDeprecation() {
|
|
|
41
41
|
export default {
|
|
42
42
|
get compile() {
|
|
43
43
|
defaultExportDeprecation();
|
|
44
|
-
return
|
|
44
|
+
return cjs.compile;
|
|
45
45
|
},
|
|
46
46
|
get compileAsync() {
|
|
47
47
|
defaultExportDeprecation();
|
|
48
|
-
return
|
|
48
|
+
return cjs.compileAsync;
|
|
49
49
|
},
|
|
50
50
|
get compileString() {
|
|
51
51
|
defaultExportDeprecation();
|
|
52
|
-
return
|
|
52
|
+
return cjs.compileString;
|
|
53
53
|
},
|
|
54
54
|
get compileStringAsync() {
|
|
55
55
|
defaultExportDeprecation();
|
|
56
|
-
return
|
|
56
|
+
return cjs.compileStringAsync;
|
|
57
57
|
},
|
|
58
58
|
get Logger() {
|
|
59
59
|
defaultExportDeprecation();
|
|
60
|
-
return
|
|
60
|
+
return cjs.Logger;
|
|
61
61
|
},
|
|
62
62
|
get SassArgumentList() {
|
|
63
63
|
defaultExportDeprecation();
|
|
64
|
-
return
|
|
64
|
+
return cjs.SassArgumentList;
|
|
65
65
|
},
|
|
66
66
|
get SassBoolean() {
|
|
67
67
|
defaultExportDeprecation();
|
|
68
|
-
return
|
|
68
|
+
return cjs.SassBoolean;
|
|
69
69
|
},
|
|
70
70
|
get SassColor() {
|
|
71
71
|
defaultExportDeprecation();
|
|
72
|
-
return
|
|
72
|
+
return cjs.SassColor;
|
|
73
73
|
},
|
|
74
74
|
get SassFunction() {
|
|
75
75
|
defaultExportDeprecation();
|
|
76
|
-
return
|
|
76
|
+
return cjs.SassFunction;
|
|
77
77
|
},
|
|
78
78
|
get SassList() {
|
|
79
79
|
defaultExportDeprecation();
|
|
80
|
-
return
|
|
80
|
+
return cjs.SassList;
|
|
81
81
|
},
|
|
82
82
|
get SassMap() {
|
|
83
83
|
defaultExportDeprecation();
|
|
84
|
-
return
|
|
84
|
+
return cjs.SassMap;
|
|
85
85
|
},
|
|
86
86
|
get SassNumber() {
|
|
87
87
|
defaultExportDeprecation();
|
|
88
|
-
return
|
|
88
|
+
return cjs.SassNumber;
|
|
89
89
|
},
|
|
90
90
|
get SassString() {
|
|
91
91
|
defaultExportDeprecation();
|
|
92
|
-
return
|
|
92
|
+
return cjs.SassString;
|
|
93
93
|
},
|
|
94
94
|
get Value() {
|
|
95
95
|
defaultExportDeprecation();
|
|
96
|
-
return
|
|
96
|
+
return cjs.Value;
|
|
97
97
|
},
|
|
98
98
|
get CustomFunction() {
|
|
99
99
|
defaultExportDeprecation();
|
|
100
|
-
return
|
|
100
|
+
return cjs.CustomFunction;
|
|
101
101
|
},
|
|
102
102
|
get ListSeparator() {
|
|
103
103
|
defaultExportDeprecation();
|
|
104
|
-
return
|
|
104
|
+
return cjs.ListSeparator;
|
|
105
105
|
},
|
|
106
106
|
get sassFalse() {
|
|
107
107
|
defaultExportDeprecation();
|
|
108
|
-
return
|
|
108
|
+
return cjs.sassFalse;
|
|
109
109
|
},
|
|
110
110
|
get sassNull() {
|
|
111
111
|
defaultExportDeprecation();
|
|
112
|
-
return
|
|
112
|
+
return cjs.sassNull;
|
|
113
113
|
},
|
|
114
114
|
get sassTrue() {
|
|
115
115
|
defaultExportDeprecation();
|
|
116
|
-
return
|
|
116
|
+
return cjs.sassTrue;
|
|
117
117
|
},
|
|
118
118
|
get Exception() {
|
|
119
119
|
defaultExportDeprecation();
|
|
120
|
-
return
|
|
120
|
+
return cjs.Exception;
|
|
121
121
|
},
|
|
122
122
|
get PromiseOr() {
|
|
123
123
|
defaultExportDeprecation();
|
|
124
|
-
return
|
|
124
|
+
return cjs.PromiseOr;
|
|
125
125
|
},
|
|
126
126
|
get info() {
|
|
127
127
|
defaultExportDeprecation();
|
|
128
|
-
return
|
|
128
|
+
return cjs.info;
|
|
129
129
|
},
|
|
130
130
|
get render() {
|
|
131
131
|
defaultExportDeprecation();
|
|
132
|
-
return
|
|
132
|
+
return cjs.render;
|
|
133
133
|
},
|
|
134
134
|
get renderSync() {
|
|
135
135
|
defaultExportDeprecation();
|
|
136
|
-
return
|
|
136
|
+
return cjs.renderSync;
|
|
137
137
|
},
|
|
138
138
|
get TRUE() {
|
|
139
139
|
defaultExportDeprecation();
|
|
140
|
-
return
|
|
140
|
+
return cjs.TRUE;
|
|
141
141
|
},
|
|
142
142
|
get FALSE() {
|
|
143
143
|
defaultExportDeprecation();
|
|
144
|
-
return
|
|
144
|
+
return cjs.FALSE;
|
|
145
145
|
},
|
|
146
146
|
get NULL() {
|
|
147
147
|
defaultExportDeprecation();
|
|
148
|
-
return
|
|
148
|
+
return cjs.NULL;
|
|
149
149
|
},
|
|
150
150
|
get types() {
|
|
151
151
|
defaultExportDeprecation();
|
|
152
|
-
return
|
|
152
|
+
return cjs.types;
|
|
153
153
|
},
|
|
154
154
|
};
|