@citizenfx/client 2.0.8422-1 → 2.0.8441-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build.bat +10 -1
- package/package.json +1 -1
package/build.bat
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
@echo off
|
|
2
|
+
|
|
3
|
+
if "%CFX_DRY_RUN%"=="true" (
|
|
4
|
+
echo "DRY RUN: Would upload npm package for client"
|
|
5
|
+
goto :end
|
|
6
|
+
)
|
|
7
|
+
|
|
2
8
|
set ROOT=%CD%
|
|
3
9
|
cd %~dp0
|
|
4
10
|
|
|
@@ -10,4 +16,7 @@ echo //registry.npmjs.org/:_authToken=%NPM_TOKEN% > .npmrc
|
|
|
10
16
|
call npm config set git-tag-version false
|
|
11
17
|
|
|
12
18
|
call npm version "2.0.%CI_PIPELINE_ID%-1"
|
|
13
|
-
call npm publish
|
|
19
|
+
call npm publish
|
|
20
|
+
|
|
21
|
+
:end
|
|
22
|
+
exit /B 0
|