mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
17 lines
356 B
JavaScript
17 lines
356 B
JavaScript
import path from 'path';
|
|
import fs from 'fs';
|
|
|
|
export function parseList(str) {
|
|
return str.split(',');
|
|
}
|
|
|
|
export function getHeadHtml(configDirPath) {
|
|
const headHtmlPath = path.resolve(configDirPath, 'head.html');
|
|
let headHtml = '';
|
|
if (fs.existsSync(headHtmlPath)) {
|
|
headHtml = fs.readFileSync(headHtmlPath, 'utf8');
|
|
}
|
|
|
|
return headHtml;
|
|
}
|