Skip to content

Commit c24df87

Browse files
author
Ives van Hoorne
committed
Fix typo
1 parent 8d9f5c6 commit c24df87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/sandbox/compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function getDependencies(parsedPackage) {
6666
const returnedDependencies = { ...peerDependencies };
6767

6868
Object.keys(d).forEach(dep => {
69-
if (BLACKLISTED_DEPENDENCIES.indexOf(dep) !== -1) {
69+
if (BLACKLISTED_DEPENDENCIES.indexOf(dep) === -1) {
7070
returnedDependencies[dep] = d[dep];
7171
}
7272
});

0 commit comments

Comments
 (0)