We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd63953 commit a77283cCopy full SHA for a77283c
1 file changed
benchmark/sirun/startup/startup-test.js
@@ -7,11 +7,15 @@ if (Number(process.env.USE_TRACER)) {
7
if (Number(process.env.EVERYTHING)) {
8
const json = require('../../../package.json')
9
for (const pkg in json.dependencies) {
10
- require(pkg)
+ try {
11
+ require(pkg)
12
+ } catch {}
13
}
14
for (const devPkg in json.devDependencies) {
15
if (devPkg !== '@types/node') {
- require(devPkg)
16
17
+ require(devPkg)
18
19
20
21
0 commit comments