forked from vitelabs/vite-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOldWinNode.bat
26 lines (19 loc) · 804 Bytes
/
OldWinNode.bat
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
@echo off
@echo Executing command to inform node the terminal supports colors:
@echo set FORCE_COLOR=1
set FORCE_COLOR=1
@echo Executing command to check if terminal is informed correctly about color support, it should display 1:
echo %FORCE_COLOR%
@echo Executing command to inform node the platform is windows:
@echo set platform=WIN
set platform=WIN
@echo Executing command to check if node is informed correctly about platform, it should display WIN:
echo %platform%
@echo Executing command to inform node the node environment is production:
@echo set NODE_ENV=prod
set NODE_ENV=prod
@echo Executing command to check if node is informed correctly about node environment, it should display prod:
echo %NODE_ENV%
@echo Executing command to run node build.js:
@echo yarn build:w11
yarn build:w11