REMOVE babel-6 cli fixture

This commit is contained in:
Norbert de Langen 2020-02-06 11:12:42 +01:00
parent 353c4dba1f
commit 0f5b841937
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
5 changed files with 0 additions and 67 deletions

View File

@ -1,4 +0,0 @@
{
"presets": ["react"],
"plugins": ["external-helpers"]
}

View File

@ -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>

View File

@ -1,7 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);

View File

@ -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"
}
}

View File

@ -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
})
]
};