-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathbabel.config.js
More file actions
117 lines (102 loc) · 2.32 KB
/
Copy pathbabel.config.js
File metadata and controls
117 lines (102 loc) · 2.32 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
const path = require('path');
const appVersion = require('./packages/decap-cms-app/package.json').version;
const coreVersion = require('./packages/decap-cms-core/package.json').version;
const isProduction = process.env.NODE_ENV === 'production';
const isTest = process.env.NODE_ENV === 'test';
const isESM = process.env.NODE_ENV === 'esm';
console.log('Build Package:', path.basename(process.cwd()));
// Always enabled plugins
const basePlugins = [
'babel-plugin-inline-json-import',
[
'@emotion/babel-plugin',
{
autoLabel: 'always',
},
],
];
// All legacy transforms have been removed as they are now included in @babel/preset-env
// Features like class properties, optional chaining, nullish coalescing are now standard in modern JS
const defaultPlugins = [...basePlugins];
const svgo = {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
removeViewBox: false,
},
},
},
],
};
const slateSerializerSpec =
/packages[\\/]decap-cms-widget-(markdown|richtext)[\\/]src[\\/]serializers[\\/]__tests__[\\/]slate\.spec\.js$/;
const automaticReactPreset = [
'@babel/preset-react',
{
runtime: 'automatic',
importSource: '@emotion/react',
},
];
function presets() {
return [...(!isESM ? [['@babel/preset-env', {}]] : []), '@babel/preset-typescript'];
}
function overrides() {
return [
{
exclude: slateSerializerSpec,
presets: [automaticReactPreset],
},
{
test: slateSerializerSpec,
presets: [['@babel/preset-react', { runtime: 'classic', pragma: 'h' }]],
},
];
}
function plugins() {
if (isESM) {
return [
...defaultPlugins,
[
'transform-define',
{
DECAP_CMS_APP_VERSION: `${appVersion}`,
DECAP_CMS_CORE_VERSION: `${coreVersion}`,
},
],
[
'inline-react-svg',
{
svgo,
},
],
[
'inline-import',
{
extensions: ['.css'],
},
],
];
}
if (isTest) {
return [
...defaultPlugins,
[
'inline-react-svg',
{
svgo,
},
],
];
}
if (!isProduction) {
return [...defaultPlugins];
}
return defaultPlugins;
}
module.exports = {
presets: presets(),
plugins: plugins(),
overrides: overrides(),
};