Skip to content

Commit bcd8b77

Browse files
committed
fix sub paths
1 parent e41f3a0 commit bcd8b77

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

code/lib/cli/core/cli/bin/index.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('@storybook/core/cli/bin');

code/lib/cli/core/cli/bin/index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from '@storybook/core/cli/bin';
2+
export type * from '@storybook/core/cli/bin';

code/lib/cli/core/cli/bin/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from '@storybook/core/cli/bin';

code/lib/cli/package.json

+8
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@
172172
"types": "./core/cli/index.d.ts",
173173
"import": "./core/cli/index.js",
174174
"require": "./core/cli/index.cjs"
175+
},
176+
"./internal/cli/bin": {
177+
"types": "./core/cli/bin/index.d.ts",
178+
"import": "./core/cli/bin/index.js",
179+
"require": "./core/cli/bin/index.cjs"
175180
}
176181
},
177182
"main": "dist/index.cjs",
@@ -191,6 +196,9 @@
191196
"internal/cli": [
192197
"./core/cli/index.d.ts"
193198
],
199+
"internal/cli/bin": [
200+
"./core/cli/bin/index.d.ts"
201+
],
194202
"internal/client-logger": [
195203
"./core/client-logger/index.d.ts"
196204
],

0 commit comments

Comments
 (0)