2016-10-14 15:48:34 -07:00
|
|
|
@echo off
|
2016-11-02 21:01:47 +01:00
|
|
|
REM Copyright 2016 Google Inc. Use of this source code is governed by an
|
|
|
|
REM MIT-style license that can be found in the LICENSE file or at
|
|
|
|
REM https://opensource.org/licenses/MIT.
|
2016-10-14 15:48:34 -07:00
|
|
|
|
2016-11-02 21:01:47 +01:00
|
|
|
REM This script drives the standalone Sass package, which bundles together a
|
|
|
|
REM Dart executable and a snapshot of Sass. It can be created with `pub run
|
|
|
|
REM grinder package`.
|
2016-10-14 15:48:34 -07:00
|
|
|
|
2018-03-16 14:38:46 -07:00
|
|
|
echo "WARNING: The dart-sass executable is deprecated, use sass instead."
|
|
|
|
|
2016-10-14 15:48:34 -07:00
|
|
|
set SCRIPTPATH=%~dp0
|
|
|
|
set arguments=%*
|
2018-11-14 13:43:47 -08:00
|
|
|
"%SCRIPTPATH%\src\dart.exe" "-Dversion=SASS_VERSION" "%SCRIPTPATH%\src\sass.dart.snapshot" %arguments%
|