mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
cleanup & fix babel not picking up tsx files
This commit is contained in:
parent
a2cce64787
commit
db69c741f9
@ -42,6 +42,13 @@ module.exports = {
|
|||||||
'@babel/preset-flow',
|
'@babel/preset-flow',
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
|
[
|
||||||
|
'module-resolver',
|
||||||
|
{
|
||||||
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
||||||
|
root: ['./'],
|
||||||
|
},
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'@babel/plugin-proposal-decorators',
|
'@babel/plugin-proposal-decorators',
|
||||||
{
|
{
|
||||||
|
@ -14,9 +14,9 @@ function getCommand(watch, dir) {
|
|||||||
|
|
||||||
const args = [
|
const args = [
|
||||||
'./src',
|
'./src',
|
||||||
`--out-dir ${dir}`,
|
`--out-dir=${dir}`,
|
||||||
`--config-file ${path.resolve(__dirname, '../../.babelrc.js')}`,
|
`--config-file=${path.resolve(__dirname, '../../.babelrc.js')}`,
|
||||||
`--copy-files`,
|
// `--copy-files`,
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -25,9 +25,9 @@ function getCommand(watch, dir) {
|
|||||||
* Only transpile .js and let tsc do the job for .ts files
|
* Only transpile .js and let tsc do the job for .ts files
|
||||||
*/
|
*/
|
||||||
if (process.cwd().includes(path.join('addons', 'storyshots'))) {
|
if (process.cwd().includes(path.join('addons', 'storyshots'))) {
|
||||||
args.push(`--extensions ".js"`);
|
args.push(`--extensions=".js"`);
|
||||||
} else {
|
} else {
|
||||||
args.push(`--extensions ".js,.jsx,.ts,.tsx"`);
|
args.push(`--extensions=.js,.jsx,.ts,.tsx`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (watch) {
|
if (watch) {
|
||||||
@ -53,10 +53,10 @@ async function run({ watch, dir, silent, errorCallback }) {
|
|||||||
|
|
||||||
if (command !== '') {
|
if (command !== '') {
|
||||||
const child = execa.command(command, {
|
const child = execa.command(command, {
|
||||||
async: true,
|
buffer: false,
|
||||||
silent: true,
|
env: { BABEL_MODE: path.basename(dir) },
|
||||||
env: { ...process.env, BABEL_MODE: path.basename(dir) },
|
|
||||||
});
|
});
|
||||||
|
|
||||||
let stderr = '';
|
let stderr = '';
|
||||||
|
|
||||||
if (watch) {
|
if (watch) {
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
import { readJSON } from 'fs-extra';
|
|
||||||
import path from 'path';
|
|
||||||
// @ts-ignore
|
|
||||||
import { tscfy } from './compile-tsc';
|
|
||||||
// @ts-ignore
|
|
||||||
import { babelify } from './compile-babel';
|
|
||||||
|
|
||||||
async function run() {
|
|
||||||
const packageJson = await readJSON(path.join(process.cwd(), 'package.json'));
|
|
||||||
|
|
||||||
if (packageJson.bundlerEntrypoint) {
|
|
||||||
console.log('bundling...');
|
|
||||||
(await import('../bundle-package')).run({
|
|
||||||
cwd: process.cwd(),
|
|
||||||
flags: ['--watch'],
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
tscfy({
|
|
||||||
watch: true,
|
|
||||||
silent: false,
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
errorCallback: () => console.error('Failed to compile ts'),
|
|
||||||
});
|
|
||||||
babelify({
|
|
||||||
modules: true,
|
|
||||||
silent: false,
|
|
||||||
watch: true,
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
errorCallback: () => console.error('Failed to compile js'),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
run().catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
process.exit(1);
|
|
||||||
});
|
|
Loading…
x
Reference in New Issue
Block a user