-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtessereact-ci.js
More file actions
126 lines (109 loc) · 4.06 KB
/
tessereact-ci.js
File metadata and controls
126 lines (109 loc) · 4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env node
/**
* Copyright (c) 2017-present, Facebook, Inc. and Tessereact authors.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
// Do this as the first thing so that any code reading it knows the right env.
process.env.BABEL_ENV = 'development'
process.env.NODE_ENV = 'development'
process.env.CI = true
// Makes the script crash on unhandled rejections instead of silently
// ignoring them. In the future, promise rejections that are not handled will
// terminate the Node.js process with a non-zero exit code.
process.on('unhandledRejection', err => {
throw err
})
// Currently tessereact-scripts depends on react-scripts installed as a peer.
// Ensure environment variables are read.
require('react-scripts/config/env')
const path = require('path')
const fs = require('fs')
const url = require('url')
const chalk = require('chalk')
const webpack = require('webpack')
const WebpackDevServer = require('webpack-dev-server')
const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles')
const {
prepareProxy,
prepareUrls
} = require('react-dev-utils/WebpackDevServerUtils')
const paths = require('react-scripts/config/paths')
const config = require('../config/webpack.config.tessereact')
const createDevServerConfig = require('react-scripts/config/webpackDevServer.config')
const tessereactServer = require('tessereact/server')
const choosePorts = require('../lib/choosePorts')
const createCompiler = require('../lib/createCompiler')
const printInstructionsWhenReady = require('../lib/printInstructionsWhenReady')
let userConfig = {}
try {
userConfig = require(path.join(fs.realpathSync(process.cwd()), process.env.TESSEREACT_CONFIG || 'tessereact.config.json'))
} catch (e) {
// User config not found
}
// Warn and crash if required files are missing
if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
process.exit(1)
}
// Tools like Cloud9 rely on this.
const DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3001
const HOST = process.env.HOST || '0.0.0.0'
// We attempt to use the default port but if it is busy, we offer the user to
// run on a different port. `detect()` Promise resolves to the next free port.
choosePorts(HOST, DEFAULT_PORT)
.then(({webpackPort, serverPort}) => {
if (webpackPort == null || serverPort == null) {
// We have not found a port.
return
}
const protocol = process.env.HTTPS === 'true' ? 'https' : 'http'
const urls = prepareUrls(protocol, HOST, webpackPort)
const tessereactServerUrls = prepareUrls(protocol, HOST, serverPort)
// Create a webpack compiler
const compiler = createCompiler(webpack, config, false)
// Load proxy config
const proxySetting = {
'/api': {
target: tessereactServerUrls.localUrlForBrowser,
secure: false
}
}
const proxyConfig = prepareProxy(proxySetting, paths.appPublic)
// Serve webpack assets generated by the compiler over a web sever.
const serverConfig = createDevServerConfig(
proxyConfig,
urls.lanUrlForConfig
)
const devServer = new WebpackDevServer(compiler, serverConfig)
// Launch WebpackDevServer.
devServer.listen(webpackPort, HOST, err => {
if (err) {
return console.log(err)
}
console.log(chalk.cyan('Starting Tessereact...\n'))
const appName = require(paths.appPackageJson).name
// Configure webpack compiler with custom messages
printInstructionsWhenReady(compiler, appName, tessereactServerUrls, false)
const tessereactConfig = Object.assign({}, {
port: serverPort,
snapshotsPath: 'snapshots',
appURL: urls.localUrlForBrowser
}, userConfig)
tessereactServer(process.cwd(), tessereactConfig)
})
const signals = ['SIGINT', 'SIGTERM']
signals.forEach(function (sig) {
process.on(sig, function () {
devServer.close()
process.exit()
})
})
})
.catch(err => {
if (err && err.message) {
console.log(err.message)
}
process.exit(1)
})