Skip to content

Commit d363d34

Browse files
authored
chore(package): update karma and webpack (#3383)
* chore(package): update karma and webpack * cleanup config more * cleanup config more
1 parent 28f81b2 commit d363d34

9 files changed

+954
-162
lines changed

.babel-preset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module.exports = () => ({
6161
[
6262
'@babel/env',
6363
{
64-
modules: isESBuild ? false : 'commonjs',
64+
modules: isESBuild || isUMDBuild ? false : 'commonjs',
6565
targets: { browsers },
6666
},
6767
],

config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const config = {
4343
// ----------------------------------
4444
// Compiler Configuration
4545
// ----------------------------------
46-
compiler_devtool: (__DEV__ || __TEST__) && 'cheap-source-map',
46+
compiler_devtool: (__DEV__ || __TEST__) && 'cheap-eval-source-map',
4747
compiler_globals: {
4848
'process.env': {
4949
NODE_ENV: JSON.stringify(env),

karma.conf.babel.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,8 @@ export default (karmaConfig) => {
9191
'test/tests.bundle.js': ['webpack'],
9292
},
9393
webpack: {
94+
...webpackConfig,
9495
entry: './test/tests.bundle.js',
95-
externals: webpackConfig.externals,
96-
devtool: config.compiler_devtool,
97-
module: webpackConfig.module,
98-
plugins: webpackConfig.plugins,
99-
resolve: webpackConfig.resolve,
10096
},
10197
webpackServer: {
10298
progress: false,

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -126,20 +126,20 @@
126126
"gulp-load-plugins": "^1.5.0",
127127
"gulp-util": "^3.0.8",
128128
"husky": "^0.14.3",
129-
"imports-loader": "^0.7.1",
130-
"karma": "^3.0.0",
129+
"imports-loader": "^0.8.0",
130+
"karma": "^3.1.4",
131131
"karma-chrome-launcher": "^2.2.0",
132-
"karma-cli": "^1.0.1",
132+
"karma-cli": "^2.0.0",
133133
"karma-coverage": "^1.1.2",
134134
"karma-mocha": "^1.3.0",
135135
"karma-mocha-reporter": "^2.2.5",
136-
"karma-webpack-with-fast-source-maps": "^1.10.2",
136+
"karma-webpack": "^4.0.0-rc.5",
137137
"leven": "^2.1.0",
138138
"lint-staged": "^7.2.2",
139139
"mocha": "^5.2.0",
140140
"prettier": "^1.15.3",
141141
"puppeteer": "^1.7.0",
142-
"raw-loader": "^0.5.1",
142+
"raw-loader": "^1.0.0",
143143
"react": "^16.6.0",
144144
"react-ace": "^6.2.0",
145145
"react-docgen": "^3.0.0-rc.1",
@@ -164,8 +164,9 @@
164164
"tslint-config-airbnb": "^5.11.0",
165165
"typescript": "^2.9.2",
166166
"vinyl": "^2.2.0",
167-
"webpack": "^3.6.0",
168-
"webpack-dev-middleware": "^1.12.0"
167+
"webpack": "^4.28.4",
168+
"webpack-cli": "^3.2.1",
169+
"webpack-dev-middleware": "^3.5.0"
169170
},
170171
"peerDependencies": {
171172
"react": "^16.3.0",

static.webpack.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import path from 'path'
2-
import webpack from 'webpack'
2+
import webpack from 'react-static/node_modules/webpack'
33

44
import config from './config'
55

test/specs/addons/Responsive/Responsive-test.js

+14-7
Original file line numberDiff line numberDiff line change
@@ -164,29 +164,36 @@ describe('Responsive', () => {
164164

165165
describe('render', () => {
166166
it('does not re render if fit does not change', () => {
167+
sandbox.stub(window, 'innerWidth').value(Responsive.onlyTablet.minWidth + 1)
168+
167169
const wrapper = mount(<Responsive {...Responsive.onlyTablet} />)
168170
const instance = wrapper.instance()
169-
const spy = sandbox.spy(instance, 'render')
170-
sandbox.stub(window, 'innerWidth').value(Responsive.onlyTablet.minWidth + 1)
171+
const render = sandbox.spy(instance, 'render')
172+
171173
domEvent.fire(window, 'resize')
172-
spy.should.not.have.been.called()
174+
render.should.not.have.been.called()
173175
})
174176

175177
it('re renders if fit changes', () => {
178+
sandbox.stub(window, 'innerWidth').value(Responsive.onlyTablet.minWidth)
179+
176180
const wrapper = mount(<Responsive {...Responsive.onlyTablet} />)
177181
const instance = wrapper.instance()
178-
const spy = sandbox.spy(instance, 'render')
182+
const render = sandbox.spy(instance, 'render')
183+
179184
sandbox.stub(window, 'innerWidth').value(Responsive.onlyTablet.minWidth - 1)
180185
domEvent.fire(window, 'resize')
181-
spy.should.have.been.calledOnce()
186+
187+
render.should.have.been.calledOnce()
182188
})
183189

184190
it('re renders when props change', () => {
185191
const wrapper = mount(<Responsive {...Responsive.onlyMobile} />)
186192
const instance = wrapper.instance()
187-
const spy = sandbox.spy(instance, 'render')
193+
const render = sandbox.spy(instance, 'render')
194+
188195
wrapper.setProps({ as: 'h1' })
189-
spy.should.have.been.called()
196+
render.should.have.been.called()
190197
})
191198
})
192199
})

webpack.karma.config.js

+22-60
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,31 @@ const config = require('./config')
44
const { paths } = config
55

66
const webpackConfig = {
7-
name: 'client',
8-
target: 'web',
7+
mode: 'development',
8+
externals: {
9+
'@babel/standalone': 'Babel',
10+
lodash: '_',
11+
react: 'React',
12+
'react-dom': 'ReactDOM',
13+
'react-dom/server': 'ReactDOMServer',
14+
},
915
devtool: config.compiler_devtool,
1016
module: {
11-
noParse: [],
12-
rules: [],
17+
noParse: [/typescript\/lib/],
18+
rules: [
19+
{
20+
test: /\.js$/,
21+
exclude: /node_modules/,
22+
use: {
23+
loader: 'babel-loader',
24+
options: {
25+
cacheDirectory: true,
26+
},
27+
},
28+
},
29+
],
1330
},
14-
plugins: [],
31+
plugins: [new webpack.DefinePlugin(config.compiler_globals)],
1532
resolve: {
1633
modules: [paths.base(), 'node_modules'],
1734
alias: {
@@ -20,59 +37,4 @@ const webpackConfig = {
2037
},
2138
}
2239

23-
// ------------------------------------
24-
// Bundle Output
25-
// ------------------------------------
26-
webpackConfig.output = {
27-
...webpackConfig.output,
28-
filename: `[name].[${config.compiler_hash_type}].js`,
29-
path: config.compiler_output_path,
30-
pathinfo: true,
31-
publicPath: config.compiler_public_path,
32-
}
33-
34-
// ------------------------------------
35-
// Plugins
36-
// ------------------------------------
37-
webpackConfig.plugins = [
38-
...webpackConfig.plugins,
39-
new webpack.DefinePlugin(config.compiler_globals),
40-
]
41-
42-
// ------------------------------------
43-
// Externals
44-
// ------------------------------------
45-
webpackConfig.externals = {
46-
'@babel/standalone': 'Babel',
47-
lodash: '_',
48-
react: 'React',
49-
'react-dom': 'ReactDOM',
50-
'react-dom/server': 'ReactDOMServer',
51-
}
52-
53-
// ------------------------------------
54-
// No Parse
55-
// ------------------------------------
56-
webpackConfig.module.noParse = [...webpackConfig.module.noParse, /\.json$/, /typescript\/lib/]
57-
58-
// ------------------------------------
59-
// Rules
60-
// ------------------------------------
61-
webpackConfig.module.rules = [
62-
...webpackConfig.module.rules,
63-
{
64-
//
65-
// Babel
66-
//
67-
test: /\.js$/,
68-
exclude: /node_modules/,
69-
use: {
70-
loader: 'babel-loader',
71-
options: {
72-
cacheDirectory: true,
73-
},
74-
},
75-
},
76-
]
77-
7840
module.exports = webpackConfig

webpack.umd.config.js

+17-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ const webpack = require('webpack')
22

33
const config = require('./config')
44
const pkg = require('./package.json')
5-
const webpackConfig = require('./webpack.karma.config')
65

76
const { paths } = config
87

@@ -16,6 +15,7 @@ const webpackUMDConfig = {
1615
react: 'React',
1716
'react-dom': 'ReactDOM',
1817
},
18+
mode: 'production',
1919
output: {
2020
filename: '[name].min.js',
2121
libraryTarget: 'umd',
@@ -28,18 +28,24 @@ const webpackUMDConfig = {
2828
new webpack.DefinePlugin({
2929
'process.env.NODE_ENV': JSON.stringify('production'),
3030
}),
31-
new webpack.optimize.UglifyJsPlugin({
32-
compress: {
33-
unused: true,
34-
dead_code: true,
35-
warnings: false,
36-
},
37-
output: { comments: false },
38-
}),
3931
],
4032
module: {
41-
noParse: webpackConfig.module.noParse,
42-
rules: webpackConfig.module.rules,
33+
rules: [
34+
{
35+
test: /\.js$/,
36+
exclude: /node_modules/,
37+
use: {
38+
loader: 'babel-loader',
39+
options: {
40+
cacheDirectory: true,
41+
},
42+
},
43+
},
44+
],
45+
},
46+
performance: {
47+
maxEntrypointSize: 750000,
48+
maxAssetSize: 750000,
4349
},
4450
}
4551

0 commit comments

Comments
 (0)