1
- 'use strict'
2
- require ( './check-versions' ) ( )
1
+ 'use strict' ;
2
+ require ( './check-versions' ) ( ) ;
3
3
4
- const config = require ( '../config' )
4
+ const config = require ( '../config' ) ;
5
5
if ( ! process . env . NODE_ENV ) {
6
- process . env . NODE_ENV = JSON . parse ( config . dev . env . NODE_ENV )
6
+ process . env . NODE_ENV = JSON . parse ( config . dev . env . NODE_ENV ) ;
7
7
}
8
8
9
- const opn = require ( 'opn' )
10
- const path = require ( 'path' )
11
- const express = require ( 'express' )
12
- const webpack = require ( 'webpack' )
13
- const proxyMiddleware = require ( 'http-proxy-middleware' )
14
- const webpackConfig = ( process . env . NODE_ENV === 'testing' || process . env . NODE_ENV === 'production' )
15
- ? require ( './webpack.prod.conf' )
16
- : require ( './webpack.dev.conf' )
9
+ const opn = require ( 'opn' ) ;
10
+ const path = require ( 'path' ) ;
11
+ const express = require ( 'express' ) ;
12
+ const webpack = require ( 'webpack' ) ;
13
+ const proxyMiddleware = require ( 'http-proxy-middleware' ) ;
14
+ const webpackConfig = ( process . env . NODE_ENV === 'testing' || process . env . NODE_ENV === 'production' ) ?
15
+ require ( './webpack.prod.conf' ) :
16
+ require ( './webpack.dev.conf' ) ;
17
17
18
18
// default port where dev server listens for incoming traffic
19
- const port = process . env . PORT || config . dev . port
19
+ const port = process . env . PORT || config . dev . port ;
20
20
// automatically open browser, if not set will be false
21
- const autoOpenBrowser = ! ! config . dev . autoOpenBrowser
21
+ const autoOpenBrowser = ! ! config . dev . autoOpenBrowser ;
22
22
// Define HTTP proxies to your custom API backend
23
23
// https://github.com/chimurai/http-proxy-middleware
24
- const proxyTable = config . dev . proxyTable
24
+ const proxyTable = config . dev . proxyTable ;
25
25
26
- const app = express ( )
27
- const compiler = webpack ( webpackConfig )
26
+ const app = express ( ) ;
27
+ const compiler = webpack ( webpackConfig ) ;
28
28
29
29
const devMiddleware = require ( 'webpack-dev-middleware' ) ( compiler , {
30
- publicPath : webpackConfig . output . publicPath ,
31
- quiet : true
32
- } )
30
+ publicPath : webpackConfig . output . publicPath ,
31
+ quiet : true
32
+ } ) ;
33
33
34
34
const hotMiddleware = require ( 'webpack-hot-middleware' ) ( compiler , {
35
- log : false ,
36
- heartbeat : 2000
37
- } )
35
+ log : false ,
36
+ heartbeat : 2000
37
+ } ) ;
38
38
// force page reload when html-webpack-plugin template changes
39
39
// currently disabled until this is resolved:
40
40
// https://github.com/jantimon/html-webpack-plugin/issues/680
@@ -47,61 +47,61 @@ const hotMiddleware = require('webpack-hot-middleware')(compiler, {
47
47
48
48
// enable hot-reload and state-preserving
49
49
// compilation error display
50
- app . use ( hotMiddleware )
50
+ app . use ( hotMiddleware ) ;
51
51
52
52
// proxy api requests
53
- Object . keys ( proxyTable ) . forEach ( function ( context ) {
54
- let options = proxyTable [ context ]
55
- if ( typeof options === 'string' ) {
56
- options = { target : options }
57
- }
58
- app . use ( proxyMiddleware ( options . filter || context , options ) )
53
+ Object . keys ( proxyTable ) . forEach ( function ( context ) {
54
+ let options = proxyTable [ context ] ;
55
+ if ( typeof options === 'string' ) {
56
+ options = { target : options } ;
57
+ }
58
+ app . use ( proxyMiddleware ( options . filter || context , options ) ) ;
59
59
} )
60
60
61
61
// handle fallback for HTML5 history API
62
- app . use ( require ( 'connect-history-api-fallback' ) ( ) )
62
+ app . use ( require ( 'connect-history-api-fallback' ) ( ) ) ;
63
63
64
64
// serve webpack bundle output
65
- app . use ( devMiddleware )
65
+ app . use ( devMiddleware ) ;
66
66
67
67
// serve pure static assets
68
- const staticPath = path . posix . join ( config . dev . assetsPublicPath , config . dev . assetsSubDirectory )
69
- app . use ( staticPath , express . static ( './static' ) )
68
+ const staticPath = path . posix . join ( config . dev . assetsPublicPath , config . dev . assetsSubDirectory ) ;
69
+ app . use ( staticPath , express . static ( './static' ) ) ;
70
70
71
- const uri = 'http://localhost:' + port
71
+ const uri = 'http://localhost:' + port ;
72
72
73
- var _resolve
74
- var _reject
75
- var readyPromise = new Promise ( ( resolve , reject ) => {
76
- _resolve = resolve
77
- _reject = reject
78
- } )
73
+ const _resolve ;
74
+ const _reject ;
75
+ const readyPromise = new Promise ( ( resolve , reject ) => {
76
+ _resolve = resolve
77
+ _reject = reject
78
+ } ) ;
79
79
80
- var server
81
- var portfinder = require ( 'portfinder' )
82
- portfinder . basePort = port
80
+ let server ;
81
+ const portfinder = require ( 'portfinder' ) ;
82
+ portfinder . basePort = port ;
83
83
84
- console . log ( '> Starting dev server...' )
84
+ console . log ( '> Starting dev server...' ) ;
85
85
devMiddleware . waitUntilValid ( ( ) => {
86
- portfinder . getPort ( ( err , port ) => {
87
- if ( err ) {
88
- _reject ( err )
89
- }
90
- process . env . PORT = port
91
- var uri = 'http://localhost:' + port
92
- console . log ( '> Listening at ' + uri + '\n' )
93
- // when env is testing, don't need open it
94
- if ( autoOpenBrowser && process . env . NODE_ENV !== 'testing' ) {
95
- opn ( uri )
96
- }
97
- server = app . listen ( port )
98
- _resolve ( )
99
- } )
86
+ portfinder . getPort ( ( err , port ) => {
87
+ if ( err ) {
88
+ _reject ( err ) ;
89
+ }
90
+ process . env . PORT = port ;
91
+ const uri = 'http://localhost:' + port ;
92
+ console . log ( '> Listening at ' + uri + '\n' ) ;
93
+ // when env is testing, don't need open it
94
+ if ( autoOpenBrowser && process . env . NODE_ENV !== 'testing' ) {
95
+ opn ( uri ) ;
96
+ }
97
+ server = app . listen ( port ) ;
98
+ _resolve ( ) ;
99
+ } )
100
100
} )
101
101
102
102
module . exports = {
103
- ready : readyPromise ,
104
- close : ( ) => {
105
- server . close ( )
106
- }
107
- }
103
+ ready : readyPromise ,
104
+ close : ( ) => {
105
+ server . close ( )
106
+ }
107
+ } ;
0 commit comments