FIX location of dll

This commit is contained in:
Norbert de Langen 2018-11-27 18:11:28 +01:00
parent b198e08271
commit ce9a74845c
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 4 additions and 10 deletions

View File

@ -27,6 +27,8 @@ const cache = Cache({
ns: 'storybook', // Optional. A grouping namespace for items.
});
const dllPath = path.join(__dirname, '../../dll/storybook_ui_dll.js');
function getServer(app, options) {
if (!options.https) {
return app;
@ -141,13 +143,7 @@ export async function buildDevStandalone(options) {
const app = express();
const server = getServer(app, options);
app.use(
'/sb_dll',
express.static(
path.join(require.resolve('@storybook/ui/package.json').replace('package.json', ''), 'dll'),
{ index: false }
)
);
app.use('/sb_dll', express.static(dllPath, { index: false }));
applyStatic(app, options);

View File

@ -17,9 +17,7 @@ export function buildStaticStandalone(options) {
const configType = 'PRODUCTION';
const outputDir = path.join(process.cwd(), options.outputDir);
const dllPath = require
.resolve('@storybook/ui/package.json')
.replace('/package.json', '/dll/storybook_ui_dll.js');
const dllPath = path.join(__dirname, '../../dll/storybook_ui_dll.js');
// create output directory if not exists
shelljs.mkdir('-p', outputDir);