mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
REMOVE babel-6 cli fixture
This commit is contained in:
parent
353c4dba1f
commit
0f5b841937
4
lib/cli/test/fixtures/react_babel_6/.babelrc
vendored
4
lib/cli/test/fixtures/react_babel_6/.babelrc
vendored
@ -1,4 +0,0 @@
|
||||
{
|
||||
"presets": ["react"],
|
||||
"plugins": ["external-helpers"]
|
||||
}
|
11
lib/cli/test/fixtures/react_babel_6/index.html
vendored
11
lib/cli/test/fixtures/react_babel_6/index.html
vendored
@ -1,11 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Hello world</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script src="dist/bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
7
lib/cli/test/fixtures/react_babel_6/index.js
vendored
7
lib/cli/test/fixtures/react_babel_6/index.js
vendored
@ -1,7 +0,0 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
|
||||
ReactDOM.render(
|
||||
<h1>Hello, world!</h1>,
|
||||
document.getElementById('root')
|
||||
);
|
23
lib/cli/test/fixtures/react_babel_6/package.json
vendored
23
lib/cli/test/fixtures/react_babel_6/package.json
vendored
@ -1,23 +0,0 @@
|
||||
{
|
||||
"name": "react-babel-6-fixture",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "rollup -c"
|
||||
},
|
||||
"dependencies": {
|
||||
"react": "^16.8.3",
|
||||
"react-dom": "^16.8.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "6.26.3",
|
||||
"babel-plugin-external-helpers": "6.22.0",
|
||||
"babel-preset-react": "6.24.1",
|
||||
"rollup": "^1.4.1",
|
||||
"rollup-plugin-babel": "^4.3.2",
|
||||
"rollup-plugin-commonjs": "^9.2.1",
|
||||
"rollup-plugin-node-resolve": "^4.0.1",
|
||||
"rollup-plugin-replace": "^2.1.0"
|
||||
}
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
import replace from 'rollup-plugin-replace';
|
||||
import commonjs from 'rollup-plugin-commonjs';
|
||||
import resolve from 'rollup-plugin-node-resolve';
|
||||
import babel from 'rollup-plugin-babel';
|
||||
|
||||
export default {
|
||||
input: 'index.js',
|
||||
output: {
|
||||
file: 'dist/bundle.js',
|
||||
format: 'iife'
|
||||
},
|
||||
plugins: [
|
||||
replace({
|
||||
'process.env.NODE_ENV': JSON.stringify('production')
|
||||
}),
|
||||
commonjs(),
|
||||
resolve(),
|
||||
babel({
|
||||
exclude: 'node_modules/**' // only transpile our source code
|
||||
})
|
||||
]
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user