-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathbabel.config.js
More file actions
107 lines (103 loc) · 2.58 KB
/
Copy pathbabel.config.js
File metadata and controls
107 lines (103 loc) · 2.58 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
const process = require('process')
const pkg = require('./package.json')
module.exports = function (api, ...args) {
api.cache(true)
if (!process.env.BUILD_VERSION) {
process.env.BUILD_VERSION = process.env.VERSION_OVERRIDE || pkg.version
}
if (!process.env.BUILD_ENV) {
process.env.BUILD_ENV = 'CDN'
}
if (!process.env.RRWEB_VERSION) {
// Prefer the installed package's actual version (node_modules/@newrelic/rrweb/package.json)
// rather than the semver range declared in this repo's package.json.
try {
// eslint-disable-next-line n/no-missing-require
const rrwebPkg = require('@newrelic/rrweb/package.json')
if (rrwebPkg && rrwebPkg.version) {
process.env.RRWEB_VERSION = rrwebPkg.version
} else {
process.env.RRWEB_VERSION = pkg.dependencies['@newrelic/rrweb'] || '0.0.0'
}
} catch (e) {
// Fallback to the semver declaration if the installed package cannot be resolved yet
process.env.RRWEB_VERSION = pkg.dependencies['@newrelic/rrweb'] || '0.0.0'
}
}
const ignore = [
'**/__mocks__/*.js'
]
const presets = [
'@babel/preset-env'
]
const plugins = [
// Replaces template literals with concatenated strings. Some customers enclose snippet in backticks when
// assigning to a variable, which conflicts with template literals.
'@babel/plugin-transform-template-literals',
// Replaces `process.env.*` environment variables with actual values.
[
'transform-inline-environment-variables',
{
include: ['BUILD_VERSION', 'BUILD_ENV', 'RRWEB_VERSION']
}
],
// Support import `with` attribute for json
'@babel/plugin-syntax-import-attributes'
]
const env = {
test: {
presets: [
[
'@babel/preset-env',
{
modules: 'commonjs'
}
]
]
},
webpack: {
ignore
},
'npm-cjs': {
ignore,
presets: [
[
'@babel/preset-env', {
modules: 'commonjs'
}
]
],
plugins: [
[
'./tools/babel/plugins/transform-import',
{
'(/constants/|^\\./)env$': '$1env.npm'
}
]
]
},
'npm-esm': {
ignore,
presets: [
[
'@babel/preset-env', {
modules: false
}
]
],
plugins: [
[
'./tools/babel/plugins/transform-import',
{
'(/constants/|^\\./)env$': '$1env.npm'
}
]
]
}
}
return {
presets,
plugins,
env
}
}