mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
Fix addon URLs on Windows
This commit is contained in:
parent
ff46c40775
commit
4f2da9acf6
@ -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": {
|
||||
|
@ -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 };
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user