@xuda.io/drive_module 1.1.1086 → 1.1.1087
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +0 -8
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2225,14 +2225,6 @@ exports.compile_javascript_program_in_studio_drive = async function (
|
|
|
2225
2225
|
const requires = extractDependencies(content, requireRegex);
|
|
2226
2226
|
imports.concat(requires).forEach((dep) => allDependencies.add(dep));
|
|
2227
2227
|
|
|
2228
|
-
// Add missing dependencies to package.json
|
|
2229
|
-
// allDependencies.forEach((dep) => {
|
|
2230
|
-
// if (!devDependencies[dep]) {
|
|
2231
|
-
// console.log(`Adding dependency: ${dep}`);
|
|
2232
|
-
// devDependencies[dep] = "latest"; // Use "latest" as the version or fetch actual versions if needed
|
|
2233
|
-
// }
|
|
2234
|
-
// });
|
|
2235
|
-
|
|
2236
2228
|
// Add missing dependencies to package.json
|
|
2237
2229
|
for await (const dep of allDependencies) {
|
|
2238
2230
|
if (!devDependencies[dep]) {
|