Skip to content

Commit

Permalink
fix sub paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Jul 10, 2024
1 parent e41f3a0 commit bcd8b77
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/lib/cli/core/cli/bin/index.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@storybook/core/cli/bin');
2 changes: 2 additions & 0 deletions code/lib/cli/core/cli/bin/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from '@storybook/core/cli/bin';
export type * from '@storybook/core/cli/bin';
1 change: 1 addition & 0 deletions code/lib/cli/core/cli/bin/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@storybook/core/cli/bin';
8 changes: 8 additions & 0 deletions code/lib/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@
"types": "./core/cli/index.d.ts",
"import": "./core/cli/index.js",
"require": "./core/cli/index.cjs"
},
"./internal/cli/bin": {
"types": "./core/cli/bin/index.d.ts",
"import": "./core/cli/bin/index.js",
"require": "./core/cli/bin/index.cjs"
}
},
"main": "dist/index.cjs",
Expand All @@ -191,6 +196,9 @@
"internal/cli": [
"./core/cli/index.d.ts"
],
"internal/cli/bin": [
"./core/cli/bin/index.d.ts"
],
"internal/client-logger": [
"./core/client-logger/index.d.ts"
],
Expand Down

0 comments on commit bcd8b77

Please sign in to comment.