diff options
author | daurnimator <quae@daurnimator.com> | 2018-03-29 00:56:11 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-03-29 01:13:12 +1100 |
commit | 308b870ae3d155053c3311859c23339a18379a40 (patch) | |
tree | cadf34fd13bf77c258b5f1f4df0752e2d5b26a6e /webpack.config.js | |
parent | 9be9e8f889d17841ac0018fd2c4b28255fa4387b (diff) | |
download | fengari-308b870ae3d155053c3311859c23339a18379a40.tar.gz fengari-308b870ae3d155053c3311859c23339a18379a40.tar.bz2 fengari-308b870ae3d155053c3311859c23339a18379a40.zip |
package.json: Remove webpack and loaders
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 42444f1..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,38 +0,0 @@ -"use strict"; - -const webpack = require('webpack'); -const path = require('path'); - -module.exports = [ - { - entry: './src/fengari.js', - target: 'web', - node: false, - output: { - path: path.resolve(__dirname, 'dist'), - filename: 'fengari.js', - library: 'fengari' - }, - module: { - rules: [ - { - test: [/\.js$/], - loader: 'babel-loader', - options: { - presets: [['env', { - "targets": { - "browsers": ["last 2 versions", "safari >= 7"] - } - }]] - } - } - ] - }, - plugins: [ - new webpack.DefinePlugin({ - "process.env.FENGARICONF": "void 0", - "typeof process": JSON.stringify("undefined") - }) - ] - } -]; |