-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathember-plugins.js
203 lines (180 loc) · 5.93 KB
/
ember-plugins.js
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
const semver = require("semver");
const resolvePackagePath = require("resolve-package-path");
function _getDebugMacroPlugins(appRoot) {
const isProduction = process.env.EMBER_ENV === "production";
const isDebug = !isProduction;
const emberDebugOptions = {
flags: [
{
source: "@glimmer/env",
flags: { DEBUG: isDebug, CI: !!process.env.CI },
},
],
debugTools: {
isDebug,
source: "@ember/debug",
assertPredicateIndex: 1,
},
};
const emberApplicationDeprecationsOptions = {
// deprecated import path https://github.com/emberjs/ember.js/pull/17926#issuecomment-484987305
externalizeHelpers: {
global: "Ember",
},
debugTools: {
isDebug,
source: "@ember/application/deprecations",
assertPredicateIndex: 1,
},
};
if (_emberVersionRequiresModulesAPIPolyfill(appRoot)) {
emberDebugOptions.externalizeHelpers = {
global: "Ember",
};
emberApplicationDeprecationsOptions.externalizeHelpers = {
global: "Ember",
};
} else {
emberDebugOptions.externalizeHelpers = {
module: "@ember/debug",
};
emberApplicationDeprecationsOptions.externalizeHelpers = {
module: "@ember/application/deprecations",
};
}
return [
[
require.resolve("babel-plugin-debug-macros"),
emberDebugOptions,
"@ember/debug stripping",
],
[
require.resolve("babel-plugin-debug-macros"),
emberApplicationDeprecationsOptions,
"@ember/application/deprecations stripping",
],
];
}
function _emberVersionRequiresModulesAPIPolyfill(appRoot) {
let packagePath = resolvePackagePath("ember-source", appRoot);
if (packagePath === null) {
return true;
}
let pkg = require(packagePath);
return pkg && semver.lt(pkg.version, "3.27.0-alpha.1");
}
function _getEmberModulesAPIPolyfill(appRoot, config) {
if (config.disableEmberModulesAPIPolyfill) {
return;
}
if (_emberVersionRequiresModulesAPIPolyfill(appRoot)) {
const ignore = _getEmberModulesAPIIgnore(appRoot, config);
return [
[require.resolve("babel-plugin-ember-modules-api-polyfill"), { ignore }],
];
}
}
function _shouldIgnoreEmberString(appRoot) {
return resolvePackagePath("@ember/string", appRoot) !== null;
}
function _shouldIgnoreJQuery(appRoot) {
let packagePath = resolvePackagePath("@ember/jquery", appRoot);
if (packagePath === null) {
return true;
}
let pkg = require(packagePath);
return pkg && semver.gt(pkg.version, "0.6.0");
}
function _emberDataVersionRequiresPackagesPolyfill(appRoot) {
let packagePath = resolvePackagePath("ember-data", appRoot);
if (packagePath === null) {
return false;
}
let pkg = require(packagePath);
return pkg && semver.lt(pkg.version, "3.12.0-alpha.0");
}
function _getEmberModulesAPIIgnore(appRoot, config) {
const ignore = {
"@ember/debug": ["assert", "deprecate", "warn"],
"@ember/application/deprecations": ["deprecate"],
};
if (config.shouldIgnoreEmberString || _shouldIgnoreEmberString(appRoot)) {
ignore["@ember/string"] = [
"fmt",
"loc",
"w",
"decamelize",
"dasherize",
"camelize",
"classify",
"underscore",
"capitalize",
"setStrings",
"getStrings",
"getString",
];
}
if (config.shouldIgnoreJQuery || _shouldIgnoreJQuery(appRoot)) {
ignore["jquery"] = ["default"];
}
return ignore;
}
function _getEmberDataPackagesPolyfill(appRoot, config) {
if (config.emberDataVersionRequiresPackagesPolyfill) {
return [[require.resolve("babel-plugin-ember-data-packages-polyfill")]];
}
return _emberDataVersionRequiresPackagesPolyfill(appRoot);
}
function _getModuleResolutionPlugins(config) {
if (!config.disableModuleResolution) {
const resolvePath = require("../lib/relative-module-paths")
.resolveRelativeModulePath;
return [
[require.resolve("babel-plugin-module-resolver"), { resolvePath }],
[
require.resolve("@babel/plugin-transform-modules-amd"),
{ noInterop: true },
],
];
}
}
function _getProposalDecoratorsAndClassPlugins(config) {
if (!config.shouldIgnoreDecoratorAndClassPlugins) {
return [
["@babel/plugin-proposal-decorators", { legacy: true }],
["@babel/plugin-proposal-class-properties"],
];
}
}
/**
* This function allows returns all the required Ember specific babel plugins for the app to transpile correctly.
* As the first argument, you need to pass in the appRoot (which is usually the __dirname).
* As the second argument, which is optional, you can choose to turn the switch on and off of several plugins that this function returns.
* **List of supported configs**
* {
* disableModuleResolution: boolean, // determines if you want the module resolution enabled
* emberDataVersionRequiresPackagesPolyfill: boolean, // enable ember data's polyfill
* shouldIgnoreJQuery: boolean, // ignore jQuery
* shouldIgnoreEmberString: boolean, // ignore ember string
* shouldIgnoreDecoratorAndClassPlugins: boolean, // disable decorator plugins
* disableEmberModulesAPIPolyfill: boolean, // disable ember modules API polyfill
* }
* @param {string} appRoot - root directory of your project
* @param {object} config - config options to finetune the plugins
*/
module.exports = function (appRoot, config = {}) {
return []
.concat(
_getProposalDecoratorsAndClassPlugins(config),
_getDebugMacroPlugins(appRoot),
_getEmberModulesAPIPolyfill(appRoot, config),
_getEmberDataPackagesPolyfill(appRoot, config),
_getModuleResolutionPlugins(config)
)
.filter(Boolean);
};
module.exports.getDebugMacroPlugins = _getDebugMacroPlugins;
module.exports.getEmberModulesAPIPolyfill = _getEmberModulesAPIPolyfill;
module.exports.getEmberDataPackagesPolyfill = _getEmberDataPackagesPolyfill;
module.exports.getModuleResolutionPlugins = _getModuleResolutionPlugins;
module.exports.getProposalDecoratorsAndClassPlugins = _getProposalDecoratorsAndClassPlugins;