forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv3.ts
More file actions
256 lines (233 loc) · 7.87 KB
/
v3.ts
File metadata and controls
256 lines (233 loc) · 7.87 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import _debug from '@codesandbox/common/lib/utils/debug';
import Manager from 'sandbox/eval/manager';
import { dispatch } from 'codesandbox-api';
import Preset from '..';
import stylesTranspiler from '../../transpilers/style';
import babelTranspiler from '../../transpilers/babel';
import jsonTranspiler from '../../transpilers/json';
import rawTranspiler from '../../transpilers/raw';
import svgrTranspiler from '../../transpilers/svgr';
import sassTranspiler from '../../transpilers/sass';
import refreshTranspiler from '../../transpilers/react/refresh-transpiler';
import {
hasRefresh,
aliases,
cleanUsingUnmount,
isMinimalReactVersion,
} from './utils';
const debug = _debug('cs:compiler:cra');
async function initializeReactDevTools() {
if (!window.opener) {
const { initialize: initializeDevTools, activate } = await import(
/* webpackChunkName: 'react-devtools-backend' */ 'react-devtools-inline/backend'
);
// The dispatch needs to happen before initializing, so that the backend can already listen
dispatch({ type: 'activate-react-devtools' });
// @ts-ignore
if (typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined') {
try {
// @ts-ignore We need to make sure that the existing chrome extension doesn't interfere
delete window.__REACT_DEVTOOLS_GLOBAL_HOOK__;
} catch (e) {
/* ignore */
}
}
// Call this before importing React (or any other packages that might import React).
initializeDevTools(window);
activate(window);
}
}
/**
* When using React Refresh we need to evaluate some code before 'react-dom' is initialized
* (https://github.com/facebook/react/issues/16604#issuecomment-528663101) this is the code.
*/
async function createRefreshEntry(manager: Manager) {
const entryModule = {
path: '/node_modules/__csb/react-dom-entrypoint.js',
code: `if (process.env.NODE_ENV !== 'production' && typeof window !== 'undefined') {
const runtime = require('react-refresh/runtime');
runtime.injectIntoGlobalHook(window);
window.$RefreshReg$ = () => {};
window.$RefreshSig$ = () => type => type;
}
`,
};
manager.addModule(entryModule);
const tEntryModule = manager.getTranspiledModule(entryModule);
tEntryModule.setIsEntry(true);
await tEntryModule
.transpile(manager)
.then(() => tEntryModule.evaluate(manager, { force: true }));
}
const BABEL7_CONFIG = {
isV7: true,
compileNodeModulesWithEnv: true,
config: {
plugins: [
['proposal-decorators', { legacy: true }],
'@babel/plugin-transform-react-jsx-source',
'transform-flow-strip-types',
'transform-destructuring',
'babel-plugin-macros',
['proposal-class-properties', { loose: true }],
['proposal-object-rest-spread', { useBuiltIns: true }],
[
'transform-runtime',
{
corejs: false,
helpers: true,
regenerator: true,
},
],
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator',
'syntax-dynamic-import',
],
presets: [
[
'env',
{
// We want Create React App to be IE 9 compatible until React itself
// no longer works with IE 9
targets: {
ie: 9,
},
// Users cannot override this behavior because this Babel
// configuration is highly tuned for ES5 support
ignoreBrowserslistConfig: true,
// If users import all core-js they're probably not concerned with
// bundle size. We shouldn't rely on magic to try and shrink it.
useBuiltIns: false,
// Do not transform modules to CJS
modules: false,
},
],
'react',
'typescript',
],
},
};
export default function initialize() {
let initialized = false;
let refreshInitialized = false;
const preset = new Preset(
'create-react-app-v3',
['web.js', 'js', 'json', 'web.jsx', 'jsx', 'ts', 'tsx'],
aliases,
{
hasDotEnv: true,
processDependencies: async dependencies => {
if (
dependencies['react-dom'] &&
isMinimalReactVersion(dependencies['react-dom'], '16.9.0')
) {
return { ...dependencies, 'react-refresh': '0.7.2' };
}
return dependencies;
},
setup: async manager => {
const dependencies = manager.manifest.dependencies;
const isRefresh = await hasRefresh(dependencies);
if (!initialized || refreshInitialized !== isRefresh) {
initialized = true;
refreshInitialized = isRefresh;
preset.resetTranspilers();
if (isRefresh) {
debug('Refresh is enabled, registering additional transpiler');
// Add react refresh babel plugin for non-node_modules
preset.registerTranspiler(
module =>
!module.path.startsWith('/node_modules') &&
/\.(t|j)sx?$/.test(module.path) &&
!module.path.endsWith('.d.ts'),
[
{
transpiler: babelTranspiler,
options: {
...BABEL7_CONFIG,
config: {
...BABEL7_CONFIG.config,
plugins: [
...BABEL7_CONFIG.config.plugins,
'react-refresh/babel',
],
},
},
},
{ transpiler: refreshTranspiler },
]
);
} else {
debug('Refresh is disabled');
}
preset.registerTranspiler(
module =>
/\.(t|j)sx?$/.test(module.path) && !module.path.endsWith('.d.ts'),
[{ transpiler: babelTranspiler, options: BABEL7_CONFIG }]
);
preset.registerTranspiler(module => /\.svg$/.test(module.path), [
{ transpiler: svgrTranspiler },
{ transpiler: babelTranspiler, options: BABEL7_CONFIG },
]);
preset.registerTranspiler(
module => /\.module\.s[c|a]ss$/.test(module.path),
[
{ transpiler: sassTranspiler },
{
transpiler: stylesTranspiler,
options: { module: true, hmrEnabled: isRefresh },
},
]
);
preset.registerTranspiler(
module => /\.module\.css$/.test(module.path),
[
{
transpiler: stylesTranspiler,
options: { module: true, hmrEnabled: isRefresh },
},
]
);
preset.registerTranspiler(module => /\.css$/.test(module.path), [
{
transpiler: stylesTranspiler,
options: { hmrEnabled: isRefresh },
},
]);
preset.registerTranspiler(module => /\.s[c|a]ss$/.test(module.path), [
{ transpiler: sassTranspiler },
{
transpiler: stylesTranspiler,
options: { hmrEnabled: isRefresh },
},
]);
preset.registerTranspiler(module => /\.json$/.test(module.path), [
{ transpiler: jsonTranspiler },
]);
preset.registerTranspiler(() => true, [
{ transpiler: rawTranspiler },
]);
}
},
preEvaluate: async manager => {
if (manager.isFirstLoad) {
await initializeReactDevTools();
}
if (await hasRefresh(manager.manifest.dependencies)) {
await createRefreshEntry(manager);
}
const reactDom = manager.manifest.dependencies.find(
n => n.name === 'react-dom'
);
if (
reactDom &&
!manager.webpackHMR &&
!(await isMinimalReactVersion(reactDom.version, '16.8.0'))
) {
cleanUsingUnmount(manager);
}
},
}
);
return preset;
}