forked from ilkome/finapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.bat
More file actions
28 lines (21 loc) · 760 Bytes
/
Copy pathdeploy.bat
File metadata and controls
28 lines (21 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@echo off
rem Ensure this Node.js and npm are first in the PATH
set "PATH=%APPDATA%\npm;C:\Program Files\nodejs;%PATH%"
rem error:0308010C:digital envelope routines::unsupported
set NODE_OPTIONS=--openssl-legacy-provider
setlocal enabledelayedexpansion
pushd "C:\Program Files\nodejs"
rem Figure out the Node.js version.
set print_version=.\node.exe -p -e "process.versions.node + ' (' + process.arch + ')'"
for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
rem Print message.
if exist npm.cmd (
echo Your environment has been set up for using Node.js !version! and npm.
) else (
echo Your environment has been set up for using Node.js !version!.
)
popd
endlocal
rem yarn build
rem yarn upload rem == upload-min
npm run deploy