summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js38
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")
- })
- ]
- }
-];