Skip to content

Commit

Permalink
cleaned up unnecessary function imports
Browse files Browse the repository at this point in the history
  • Loading branch information
khbsd committed May 31, 2024
1 parent 478261a commit 4b9fb56
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions commands/unpackGameData.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,19 @@
const vscode = require('vscode');
const fs = require('fs');
const os = require('os');

const path = require('path');

const LSLIB_DLL = 'LSLib.dll';
const TOOL_SUBDIR = 'Tools\\';

const { getConfig } = require('../support_files/config');
const { lslibPath, rootModPath, gameInstallLocation } = getConfig();
const compatRootModPath = path.join(rootModPath + "\\");
const lslibToolsPath = path.join(lslibPath, TOOL_SUBDIR);
const { gameInstallLocation } = getConfig();


const { saveConfigFile, loadConfigFile } = require('../support_files/helper_functions')
const { loadConfigFile } = require('../support_files/helper_functions')

const { CREATE_LOGGER, raiseError, raiseInfo } = require('../support_files/log_utils');
var bg3mh_logger = CREATE_LOGGER();
const { raiseInfo } = require('../support_files/log_utils');

const { FIND_FILES, getFormats, dirSeparator, LOAD_LSLIB } = require('../support_files/lslib_utils.js');
const { FIND_FILES, getFormats } = require('../support_files/lslib_utils.js');
const { pak } = getFormats();
const { processPak } = require('../support_files/process_pak.js');

const { isMainThread, MessageChannel, Worker } = require('node:worker_threads');
const comsPorts = new MessageChannel();
const { isMainThread } = require('node:worker_threads');

const { createConversionWorkers } = require('../support_files/conversion_junction');

Expand Down

0 comments on commit 4b9fb56

Please sign in to comment.