13 lines
1.1 KiB
Batchfile
13 lines
1.1 KiB
Batchfile
@SETLOCAL
|
|
@IF NOT DEFINED NODE_PATH (
|
|
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules"
|
|
) ELSE (
|
|
@SET "NODE_PATH=E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\bin\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules\autoprefixer\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\autoprefixer@10.4.24_postcss@8.5.6\node_modules;E:\Gongsi\Mycontent\soul-admin\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
|
)
|
|
@IF EXIST "%~dp0\node.exe" (
|
|
"%~dp0\node.exe" "%~dp0\..\autoprefixer\bin\autoprefixer" %*
|
|
) ELSE (
|
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
|
node "%~dp0\..\autoprefixer\bin\autoprefixer" %*
|
|
)
|