Skip to content

Commit e12c372

Browse files
Fix initial assetUnityInternalPathDir
1 parent 75c28d5 commit e12c372

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/assetText.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import path from 'node:path';
22
import bun from 'bun';
33
import Papa from 'papaparse';
44
import { Duration, DateTime } from 'luxon';
5-
import * as TypesAssetCsvStructure from '../types/AssetCsvStructure.js';
5+
import * as TypesAssetCsvStructure from '../types/AssetCsvStructure';
66

77
async function parseCsvFile(filePath: string) {
88
const inputContext = (await bun.file(path.resolve(filePath)).text()).replaceAll('\r\n', '\n').trim();

src/utils/configUser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const initialConfig: ConfigType = {
4444
assetDb: null,
4545
masterDb: null,
4646
},
47-
assetUnityInternalPathDir: 'assets/_gallopresources/bundle/resources',
47+
assetUnityInternalPathDir: '_gallopresources/bundle/resources',
4848
outputPath: path.resolve('output'),
4949
outputSubPath: {
5050
assets: 'assets',

0 commit comments

Comments
 (0)