mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 00:28:20 -05:00
6c737f51b8
Upgrade webview to WKWebView with many thanks to @yueyuzhao * Need to debug a problem saving thumbnails on iOS 9.3.5 * Needs much more testing
41 lines
961 B
JavaScript
41 lines
961 B
JavaScript
var WebpackNotifierPlugin = require('webpack-notifier');
|
|
|
|
module.exports = {
|
|
devtool: 'source-map',
|
|
entry: {
|
|
app: './src/entry/app.js'
|
|
},
|
|
output: {
|
|
path: __dirname + '/src/build/bundles',
|
|
filename: '[name].bundle.js'
|
|
},
|
|
performance: {
|
|
hints: false
|
|
},
|
|
watchOptions: {
|
|
ignored: ["node_modules", "src/build/**/*"]
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
include: /node_modules/,
|
|
loaders: ['strip-sourcemap-loader']
|
|
},
|
|
{
|
|
loader: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
test: /\.jsx?$/,
|
|
query: {
|
|
presets: ['es2015', 'stage-3']
|
|
}
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new WebpackNotifierPlugin({
|
|
title: "ScratchJr",
|
|
alwaysNotify: true
|
|
})
|
|
]
|
|
};
|