Skip to content

Commit

Permalink
Cordon the Node Sass API off into a legacy directory (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Sep 23, 2021
1 parent 8d5d586 commit ba38c09
Show file tree
Hide file tree
Showing 39 changed files with 461 additions and 451 deletions.
2 changes: 1 addition & 1 deletion lib/src/async_compile.dart
Expand Up @@ -11,7 +11,7 @@ import 'async_import_cache.dart';
import 'callable.dart';
import 'compile_result.dart';
import 'importer.dart';
import 'importer/node.dart';
import 'importer/legacy_node.dart';
import 'io.dart';
import 'logger.dart';
import 'logger/terse.dart';
Expand Down
4 changes: 2 additions & 2 deletions lib/src/compile.dart
Expand Up @@ -5,7 +5,7 @@
// DO NOT EDIT. This file was generated from async_compile.dart.
// See tool/grind/synchronize.dart for details.
//
// Checksum: 1a1251aa9f7312612a64760f59803568bd09a07c
// Checksum: f8b5bf7eafbe3523ca4df1a6832e131c5c03986b
//
// ignore_for_file: unused_import

Expand All @@ -20,7 +20,7 @@ import 'import_cache.dart';
import 'callable.dart';
import 'compile_result.dart';
import 'importer.dart';
import 'importer/node.dart';
import 'importer/legacy_node.dart';
import 'io.dart';
import 'logger.dart';
import 'logger/terse.dart';
Expand Down
Expand Up @@ -2,4 +2,4 @@
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

export 'node/interface.dart' if (dart.library.js) 'node/implementation.dart';
export 'legacy_node/interface.dart' if (dart.library.js) 'legacy_node/implementation.dart';
Expand Up @@ -10,10 +10,10 @@ import 'package:tuple/tuple.dart';

import '../../io.dart';
import '../../node/function.dart';
import '../../node/importer_result.dart';
import '../../node/legacy/importer_result.dart';
import '../../node/legacy/render_context.dart';
import '../../node/utils.dart';
import '../../util/nullable.dart';
import '../../node/render_context.dart';
import '../utils.dart';

/// An importer that encapsulates Node Sass's import logic.
Expand Down
File renamed without changes.

0 comments on commit ba38c09

Please sign in to comment.