Skip to content

Commit

Permalink
Merge branch 'master' into bump-chokidar-v4
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy authored Sep 24, 2024
2 parents 3aec4aa + 12a5d31 commit 8b98279
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/storybook-builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @web/storybook-builder

## 0.1.18

### Patch Changes

- 75747976: fix relative path by starting with ./

## 0.1.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web/storybook-builder",
"version": "0.1.17",
"version": "0.1.18",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function esbuildPluginCommonjsNamedExports(modules: string[]): Plugin {

return {
resolveDir,
contents: `export { ${finalExports.join(',')} } from '${slash(
contents: `export { ${finalExports.join(',')} } from './${slash(
relative(resolveDir, resolvedPath),
)}';`,
};
Expand Down

0 comments on commit 8b98279

Please sign in to comment.