2017-07-06 23:40:45 +02:00
|
|
|
// Copyright 2017 Google Inc. Use of this source code is governed by an
|
|
|
|
// MIT-style license that can be found in the LICENSE file or at
|
|
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
|
|
|
|
import 'dart:async';
|
|
|
|
|
2017-07-07 02:36:15 +02:00
|
|
|
import 'package:stream_channel/stream_channel.dart';
|
2017-07-06 23:40:45 +02:00
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
2017-12-08 02:18:34 +01:00
|
|
|
import 'package:sass/src/io.dart';
|
|
|
|
|
2018-06-27 22:12:16 +02:00
|
|
|
import 'io.dart';
|
2017-07-06 23:40:45 +02:00
|
|
|
|
2018-06-27 22:12:16 +02:00
|
|
|
hybridMain(StreamChannel channel) async {
|
|
|
|
ensureUpToDate("build/npm/sass.dart.js", "pub run grinder npm-package");
|
2017-07-06 23:40:45 +02:00
|
|
|
channel.sink.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensures that the NPM package is compiled and up-to-date.
|
|
|
|
///
|
2017-10-21 01:56:54 +02:00
|
|
|
/// This is safe to call even outside the Dart VM.
|
2017-12-08 02:18:34 +01:00
|
|
|
Future ensureNpmPackage() async {
|
|
|
|
// spawnHybridUri() doesn't currently work on Windows and Node due to busted
|
|
|
|
// path handling in the SDK.
|
|
|
|
if (isNode && isWindows) return;
|
|
|
|
|
2017-10-21 01:56:54 +02:00
|
|
|
var channel = spawnHybridUri("/test/ensure_npm_package.dart");
|
2017-12-08 02:18:34 +01:00
|
|
|
await channel.stream.toList();
|
2017-07-06 23:40:45 +02:00
|
|
|
}
|