@xuda.io/drive_module 1.1.1064 → 1.1.1066

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.
Files changed (2) hide show
  1. package/index.js +6 -11
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2097,17 +2097,10 @@ const save_drive_doc = async function (drive_type, app_id, doc) {
2097
2097
  return save_ret;
2098
2098
  };
2099
2099
 
2100
- exports.compile_javascript_program_in_studio_drive = async function (
2101
- req,
2102
- job_id
2103
- ) {
2100
+ exports.compile_javascript_program_in_studio_drive = async function (req, doc) {
2104
2101
  const { app_id, prog_id } = req;
2105
- let doc;
2102
+
2106
2103
  try {
2107
- const app_ret = await db_module.get_app_couch_doc(app_id, prog_id);
2108
- if (app_ret.code > 0) {
2109
- doc = app_ret.data;
2110
- }
2111
2104
  const studio_drive_script_folder = path.join(
2112
2105
  _conf.studio_drive_path,
2113
2106
  app_id,
@@ -2308,8 +2301,10 @@ export default {
2308
2301
  /////////////////////
2309
2302
  doc.vite_build_res = {
2310
2303
  code: 1,
2311
- data: build_ret,
2312
- dependencies: devDependencies,
2304
+ data: {
2305
+ build_ret,
2306
+ dependencies: devDependencies,
2307
+ },
2313
2308
  };
2314
2309
  if (job_id) {
2315
2310
  return doc.vite_build_res;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/drive_module",
3
- "version": "1.1.1064",
3
+ "version": "1.1.1066",
4
4
  "description": "Xuda Drive Server Module",
5
5
  "main": "index.js",
6
6
  "dependencies": {