You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
253 B
8 lines
253 B
1 month ago
|
@echo off
|
||
|
REM This script drives the standalone dart-sass package, which bundles together a
|
||
|
REM Dart executable and a snapshot of dart-sass.
|
||
|
|
||
|
set SCRIPTPATH=%~dp0
|
||
|
set arguments=%*
|
||
|
"%SCRIPTPATH%\src\dart.exe" "%SCRIPTPATH%\src\sass.snapshot" %arguments%
|