UNPKG
@waynew/boa
Version:
latest (2.1.3)
2.1.3
2.1.2
2.1.1
2.1.0
Use Python modules seamlessly in Node.js
github.com/alibaba/pipcook
alibaba/pipcook
@waynew/boa
/
tools
/
debuginfo.js
10 lines
(7 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
path =
require
(
'path'
);
const
{ run,
PLATFORM
} =
require
(
'./utils'
);
if
(
PLATFORM
===
'linux'
) {
run
(
'ldd'
, path.
join
(__dirname,
'../build/Release/boa.node'
)); }
run
(
'ls'
, path.
join
(__dirname,
'../.miniconda/lib/python3.9/lib-dynload'
));