Fix addon URLs on Windows

This commit is contained in:
Josh Wooding 2022-10-24 01:01:21 +01:00
parent ff46c40775
commit 4f2da9acf6
No known key found for this signature in database
GPG Key ID: B496BB89A7E00330
3 changed files with 4 additions and 1 deletions

View File

@ -54,6 +54,7 @@
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"process": "^0.11.10",
"slash": "^3.0.0",
"util": "^0.12.4"
},
"devDependencies": {

View File

@ -1,6 +1,7 @@
import { OutputFile } from 'esbuild';
import fs from 'fs-extra';
import { join } from 'path';
import slash from 'slash';
import { Compilation } from '../types';
export async function readOrderedFiles(
@ -26,6 +27,6 @@ export async function readOrderedFiles(
export function sanitizePath(file: OutputFile, addonsDir: string) {
const filePath = file.path.replace(addonsDir, '');
const location = join(addonsDir, filePath);
const url = `./sb-addons${filePath.split('/').map(encodeURIComponent).join('/')}`;
const url = `./sb-addons${slash(filePath).split('/').map(encodeURIComponent).join('/')}`;
return { location, url };
}

View File

@ -7061,6 +7061,7 @@ __metadata:
express: ^4.17.1
fs-extra: ^9.0.1
process: ^0.11.10
slash: ^3.0.0
typescript: ~4.6.3
util: ^0.12.4
languageName: unknown