Skip to content

Commit 8b98279

Browse files
Merge branch 'master' into bump-chokidar-v4
2 parents 3aec4aa + 12a5d31 commit 8b98279

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/storybook-builder/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @web/storybook-builder
22

3+
## 0.1.18
4+
5+
### Patch Changes
6+
7+
- 75747976: fix relative path by starting with ./
8+
39
## 0.1.17
410

511
### Patch Changes

packages/storybook-builder/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web/storybook-builder",
3-
"version": "0.1.17",
3+
"version": "0.1.18",
44
"publishConfig": {
55
"access": "public"
66
},

packages/storybook-builder/src/esbuild-plugin-commonjs-named-exports.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function esbuildPluginCommonjsNamedExports(modules: string[]): Plugin {
5858

5959
return {
6060
resolveDir,
61-
contents: `export { ${finalExports.join(',')} } from '${slash(
61+
contents: `export { ${finalExports.join(',')} } from './${slash(
6262
relative(resolveDir, resolvedPath),
6363
)}';`,
6464
};

0 commit comments

Comments
 (0)