Skip dependency type checks and skip building caxa binary

This commit is contained in:
Samuel Elliott 2022-03-29 23:30:28 +01:00
parent 425c838649
commit a5838ec47b
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
2 changed files with 8 additions and 7 deletions

View File

@ -14,16 +14,16 @@ build:
- PACKAGE=`npm --color="always" pack`
- mv "$PACKAGE" nxapi.tgz
- npm run build-macos-linux
- npm run build-windows
- mv dist/bin/nxapi .
- mv dist/bin/nxapi.exe .
# - npm run build-macos-linux
# - npm run build-windows
# - mv dist/bin/nxapi .
# - mv dist/bin/nxapi.exe .
artifacts:
paths:
- dist
- nxapi.tgz
- nxapi
- nxapi.exe
# - nxapi
# - nxapi.exe
publish-npm:
stage: deploy

View File

@ -7,6 +7,7 @@
"moduleResolution": "node12",
"declaration": true,
"rootDir": "src",
"outDir": "dist"
"outDir": "dist",
"skipLibCheck": true
}
}