UNPKG
akey-mac-screen-capture-permissions
Version:
latest (1.0.0)
1.0.0
Check and request permission to capture the screen
karaggeorge/mac-screen-capture-permissions
akey-mac-screen-capture-permissions
/
install.js
10 lines
(8 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
os
=
require
(
'os'
);
const
{spawnSync} =
require
(
'child_process'
);
if
(os.
platform
() ===
'darwin'
) {
spawnSync
(
'npm'
, [
'run'
,
'native_build'
], {
input
:
'darwin detected. Build native module.'
,
stdio
:
'inherit'
}); }