diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-13 08:16:12 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-13 08:16:52 +0100 |
commit | b2128609ac8159a14224deba399144b3400c8c20 (patch) | |
tree | 4759dfda67c54f6838c3aef0951545ae18bb83bd /thirdparty/preact/config/rollup.config.js | |
parent | 3f0ee289c4a61991d0e75906a9bd949cebb39d20 (diff) |
Finally give in and use React, minor tweeks.
Preact (a minimalistic React alternative) had too many bugs ...
Diffstat (limited to 'thirdparty/preact/config/rollup.config.js')
-rw-r--r-- | thirdparty/preact/config/rollup.config.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/thirdparty/preact/config/rollup.config.js b/thirdparty/preact/config/rollup.config.js deleted file mode 100644 index 57f71e1e7..000000000 --- a/thirdparty/preact/config/rollup.config.js +++ /dev/null @@ -1,23 +0,0 @@ -import nodeResolve from 'rollup-plugin-node-resolve'; -import babel from 'rollup-plugin-babel'; -import memory from 'rollup-plugin-memory'; - -export default { - exports: 'named', - useStrict: false, - plugins: [ - memory({ - path: 'src/preact', - contents: "export * from './preact';" - }), - nodeResolve({ - main: true - }), - babel({ - sourceMap: true, - loose: 'all', - blacklist: ['es6.tailCall'], - exclude: 'node_modules/**' - }) - ] -}; |