22// MIT-style license that can be found in the LICENSE file or at
33// https://opensource.org/licenses/MIT.
44
5- import 'node /exception.dart' ;
6- import 'node /exports.dart' ;
7- import 'node /compile.dart' ;
8- import 'node /legacy.dart' ;
9- import 'node /legacy/types.dart' ;
10- import 'node /legacy/value.dart' ;
11- import 'node /logger.dart' ;
12- import 'node /source_span.dart' ;
13- import 'node /utils.dart' ;
14- import 'node /value.dart' ;
5+ import 'js /exception.dart' ;
6+ import 'js /exports.dart' ;
7+ import 'js /compile.dart' ;
8+ import 'js /legacy.dart' ;
9+ import 'js /legacy/types.dart' ;
10+ import 'js /legacy/value.dart' ;
11+ import 'js /logger.dart' ;
12+ import 'js /source_span.dart' ;
13+ import 'js /utils.dart' ;
14+ import 'js /value.dart' ;
1515import 'value.dart' ;
1616
17- /// The entrypoint for the Node.js module.
17+ /// The entrypoint for the JavaScript module.
1818///
1919/// This sets up exports that can be called from JS.
2020void main () {
@@ -41,7 +41,7 @@ void main() {
4141 exports.sassFalse = sassFalse;
4242 exports.Exception = exceptionClass;
4343 exports.Logger = LoggerNamespace (
44- silent: NodeLogger (
44+ silent: JSLogger (
4545 warn: allowInteropNamed ('sass.Logger.silent.warn' , (_, __) {}),
4646 debug: allowInteropNamed ('sass.Logger.silent.debug' , (_, __) {})));
4747
0 commit comments