Add support for the PKG module so that the project can be compiled into native binaries.
This commit is contained in:
Elliot Huffman 2022-02-06 12:45:25 -05:00
Родитель f1bce1709f
Коммит b055877e28
2 изменённых файлов: 17 добавлений и 1 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,6 @@
# Built Executables/Installers
dist/
# typescript compiled output
bin/

Просмотреть файл

@ -3,6 +3,7 @@
"version": "1.1.0",
"description": "A utility to easily manage cloud PAW devices via Microsoft Endpoint Manager (Intune).",
"main": "bin/src/index.js",
"bin": "bin/src/index.js",
"private": "true",
"scripts": {
"start": "node ./bin/src/index.js",
@ -46,5 +47,17 @@
"helmet": "^5.0.2",
"isomorphic-fetch": "^3.0.0",
"swagger-ui-express": "^4.3.0"
},
"pkg": {
"scripts": "bin/src/**/*.js",
"assets": [
"node_modules/**/*",
"bin/src/UI/**/*"
],
"targets": [
"node16-win-x64",
"node16-linux-x64"
],
"outputPath": "dist"
}
}
}