worker-spzx2 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/main.js +1 -1
- package/package.json +1 -1
package/main.js
CHANGED
@@ -73,7 +73,7 @@ for(const name of dependencies.d){
|
|
73
73
|
}
|
74
74
|
console.log(_dependencies)
|
75
75
|
|
76
|
-
const missingDependencies = _dependencies.filter(dep => !isModuleInstalled(dep));
|
76
|
+
const missingDependencies = _dependencies.filter(dep => !dep.startsWith("yodata") && !dep.startsWith("fs") && !dep.startsWith("random-id") && !isModuleInstalled(dep));
|
77
77
|
|
78
78
|
console.log(missingDependencies)
|
79
79
|
|