sass 1.63.4 → 1.63.5
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 +4 -4
- package/sass.node.mjs +29 -38
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.5","bin":{"sass":"sass.js"},"main":"sass.node.js"}
|
package/sass.dart.js
CHANGED
|
@@ -127,7 +127,7 @@ self.readline = _cliPkgRequires.readline;
|
|
|
127
127
|
self.fs = _cliPkgRequires.fs;
|
|
128
128
|
self.stream = _cliPkgRequires.stream;
|
|
129
129
|
self.util = _cliPkgRequires.util;
|
|
130
|
-
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, csp, deferred-serialization, intern-composite-values), the Dart to JavaScript compiler version: 3.0.
|
|
130
|
+
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, csp, deferred-serialization, intern-composite-values), the Dart to JavaScript compiler version: 3.0.5.
|
|
131
131
|
// The code supports the following hooks:
|
|
132
132
|
// dartPrint(message):
|
|
133
133
|
// if this function is defined it is called instead of the Dart [print]
|
|
@@ -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.5\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.5 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.5");
|
|
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
|
@@ -1,42 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import * as stream from "stream"
|
|
3
|
-
import * as fs from "fs"
|
|
4
|
-
import * as immutable from "immutable"
|
|
5
|
-
import "./sass.dart.js";
|
|
1
|
+
import cjs from "./sass.node.js";
|
|
6
2
|
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export const
|
|
13
|
-
export const
|
|
14
|
-
export const
|
|
15
|
-
export const
|
|
16
|
-
export const
|
|
17
|
-
export const
|
|
18
|
-
export const
|
|
19
|
-
export const
|
|
20
|
-
export const
|
|
21
|
-
export const
|
|
22
|
-
export const
|
|
23
|
-
export const
|
|
24
|
-
export const
|
|
25
|
-
export const
|
|
26
|
-
export const
|
|
27
|
-
export const
|
|
28
|
-
export const
|
|
29
|
-
export const
|
|
30
|
-
export const
|
|
31
|
-
export const
|
|
32
|
-
export const
|
|
33
|
-
export const
|
|
34
|
-
export const
|
|
35
|
-
export const renderSync = _cliPkgExports.renderSync;
|
|
36
|
-
export const TRUE = _cliPkgExports.TRUE;
|
|
37
|
-
export const FALSE = _cliPkgExports.FALSE;
|
|
38
|
-
export const NULL = _cliPkgExports.NULL;
|
|
39
|
-
export const types = _cliPkgExports.types;
|
|
3
|
+
export const compile = cjs.compile;
|
|
4
|
+
export const compileAsync = cjs.compileAsync;
|
|
5
|
+
export const compileString = cjs.compileString;
|
|
6
|
+
export const compileStringAsync = cjs.compileStringAsync;
|
|
7
|
+
export const Logger = cjs.Logger;
|
|
8
|
+
export const SassArgumentList = cjs.SassArgumentList;
|
|
9
|
+
export const SassBoolean = cjs.SassBoolean;
|
|
10
|
+
export const SassColor = cjs.SassColor;
|
|
11
|
+
export const SassFunction = cjs.SassFunction;
|
|
12
|
+
export const SassList = cjs.SassList;
|
|
13
|
+
export const SassMap = cjs.SassMap;
|
|
14
|
+
export const SassNumber = cjs.SassNumber;
|
|
15
|
+
export const SassString = cjs.SassString;
|
|
16
|
+
export const Value = cjs.Value;
|
|
17
|
+
export const CustomFunction = cjs.CustomFunction;
|
|
18
|
+
export const ListSeparator = cjs.ListSeparator;
|
|
19
|
+
export const sassFalse = cjs.sassFalse;
|
|
20
|
+
export const sassNull = cjs.sassNull;
|
|
21
|
+
export const sassTrue = cjs.sassTrue;
|
|
22
|
+
export const Exception = cjs.Exception;
|
|
23
|
+
export const PromiseOr = cjs.PromiseOr;
|
|
24
|
+
export const info = cjs.info;
|
|
25
|
+
export const render = cjs.render;
|
|
26
|
+
export const renderSync = cjs.renderSync;
|
|
27
|
+
export const TRUE = cjs.TRUE;
|
|
28
|
+
export const FALSE = cjs.FALSE;
|
|
29
|
+
export const NULL = cjs.NULL;
|
|
30
|
+
export const types = cjs.types;
|
|
40
31
|
|
|
41
32
|
let printedDefaultExportDeprecation = false;
|
|
42
33
|
function defaultExportDeprecation() {
|