mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-16 16:19:48 -05:00
Remove webpack step for now
This commit is contained in:
parent
155c13820e
commit
93e9f950c2
2 changed files with 0 additions and 6 deletions
|
@ -25,7 +25,6 @@
|
|||
"homepage": "https://github.com/llk/scratch-www#readme",
|
||||
"dependencies": {
|
||||
"@sentry/browser": "4.4.2",
|
||||
"@sentry/webpack-plugin": "1.6.2",
|
||||
"bunyan": "1.7.1",
|
||||
"clipboard-copy": "2.0.1",
|
||||
"compression": "1.6.1",
|
||||
|
|
|
@ -4,7 +4,6 @@ const defaults = require('lodash.defaults');
|
|||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const gitsha = require('git-bundle-sha');
|
||||
const path = require('path');
|
||||
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
|
||||
const webpack = require('webpack');
|
||||
|
||||
let routes = require('./src/routes.json');
|
||||
|
@ -159,10 +158,6 @@ module.exports = {
|
|||
.concat(process.env.NODE_ENV === 'production' ? [
|
||||
new webpack.optimize.UglifyJsPlugin({
|
||||
sourceMap: true
|
||||
}),
|
||||
new SentryWebpackPlugin({
|
||||
include: '.',
|
||||
ignore: ['node_modules', 'webpack.config.js']
|
||||
})
|
||||
] : [])
|
||||
.concat([
|
||||
|
|
Loading…
Reference in a new issue