mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
1efefb1524
This renames the script to dart-sass, and makes it the only file in the archive root directory to make it easier to add to PATH.
13 lines
514 B
Batchfile
13 lines
514 B
Batchfile
@echo off
|
|
%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.
|
|
|
|
%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`.
|
|
|
|
set SCRIPTPATH=%~dp0
|
|
set arguments=%*
|
|
"%SCRIPTPATH%\src\dart.exe" "-Dversion=SASS_VERSION" "%SCRIPTPATH%\src\sass.dart.snapshot" %arguments%
|