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 8d9f5c6 commit c24df87Copy full SHA for c24df87
packages/app/src/sandbox/compile.js
@@ -66,7 +66,7 @@ function getDependencies(parsedPackage) {
66
const returnedDependencies = { ...peerDependencies };
67
68
Object.keys(d).forEach(dep => {
69
- if (BLACKLISTED_DEPENDENCIES.indexOf(dep) !== -1) {
+ if (BLACKLISTED_DEPENDENCIES.indexOf(dep) === -1) {
70
returnedDependencies[dep] = d[dep];
71
}
72
});
0 commit comments