-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathindex.js
More file actions
240 lines (208 loc) · 6.57 KB
/
index.js
File metadata and controls
240 lines (208 loc) · 6.57 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
'use strict';
const getProjectOptions = require('./get-project-options');
const getPackageName = require('./get-package-name');
const getVersions = require('./get-versions');
const _getTagVersion = require('./get-tag-version');
const boilerplateUpdate = require('boilerplate-update');
const getStartAndEndCommands = require('./get-start-and-end-commands');
const parseBlueprintPackage = require('./parse-blueprint-package');
const downloadPackage = require('./download-package');
const loadSafeBlueprintFile = require('./load-safe-blueprint-file');
const saveBlueprint = require('./save-blueprint');
const loadDefaultBlueprintFromDisk = require('./load-default-blueprint-from-disk');
const loadSafeBlueprint = require('./load-safe-blueprint');
const stageBlueprintFile = require('./stage-blueprint-file');
const { getBlueprintRelativeFilePath } = require('./get-blueprint-file-path');
const isDefaultBlueprint = require('./is-default-blueprint');
const findBlueprint = require('./find-blueprint');
const getBaseBlueprint = require('./get-base-blueprint');
const chooseBlueprintUpdates = require('./choose-blueprint-updates');
const getBlueprintFilePath = require('./get-blueprint-file-path');
const resolvePackage = require('./resolve-package');
const { defaultTo } = require('./constants');
const normalizeBlueprintArgs = require('./normalize-blueprint-args');
/**
* If `version` attribute exists in the `blueprint` object and URL is empty, skip. Otherwise resolve the details of
* the blueprint
*
* @param {Object} blueprint - Expected to contain `name`, `options` array, `packageName`, `location`, and `version`
* attributes
* @param {String} url - Optional parameter that links to package
* @param {String} range - Version range i.e. 1.0.2
* @returns {Promise<void>}
* @private
*/
async function _resolvePackage(blueprint, url, range) {
if (blueprint.version && !url) {
return;
}
let {
version,
path
} = await resolvePackage({
name: blueprint.packageName,
url,
range
});
blueprint.version = version;
if (path) {
blueprint.path = path;
}
}
module.exports = async function emberCliUpdate({
cwd = process.cwd(),
packageName,
blueprint: _blueprint,
from,
to
} = {}) {
// A custom config location in package.json may be reset/init away,
// so we can no longer look it up on the fly after the run.
// We must rely on a lookup before the run.
let emberCliUpdateJsonPath = await getBlueprintFilePath(cwd);
let emberCliUpdateJson = await loadSafeBlueprintFile(emberCliUpdateJsonPath);
let { blueprints } = emberCliUpdateJson;
let blueprint;
let packageUrl;
if (_blueprint) {
let blueprintArgs = normalizeBlueprintArgs({
packageName,
blueprintName: _blueprint
});
let parsedPackage = await parseBlueprintPackage({
cwd,
packageName: blueprintArgs.packageName
});
packageUrl = parsedPackage.url;
packageName = parsedPackage.name;
if (!packageName) {
let downloadedPackage = await downloadPackage(null, packageUrl, defaultTo);
packageName = downloadedPackage.name;
}
let blueprintName;
if (blueprintArgs.blueprintName !== blueprintArgs.packageName) {
blueprintName = blueprintArgs.blueprintName;
} else {
blueprintName = packageName;
}
let existingBlueprint = findBlueprint(emberCliUpdateJson, packageName, blueprintName);
if (existingBlueprint) {
blueprint = existingBlueprint;
} else {
blueprint = loadSafeBlueprint({
packageName,
name: blueprintName,
location: parsedPackage.location
});
if (isDefaultBlueprint(blueprint)) {
blueprint = await loadDefaultBlueprintFromDisk({
cwd,
version: from
});
}
}
if (from) {
blueprint.version = from;
}
if (!blueprint.version) {
throw new Error('A custom blueprint cannot detect --from. You must supply it.');
}
} else if (blueprints.length) {
let {
areAllUpToDate,
blueprint: _blueprint,
to: _to
} = await chooseBlueprintUpdates({
cwd,
emberCliUpdateJson,
to
});
if (areAllUpToDate) {
return { promise: Promise.resolve() };
}
blueprint = _blueprint;
to = _to;
} else {
blueprint = await loadDefaultBlueprintFromDisk({
cwd,
version: from
});
}
// If blueprint is located on disk
if (blueprint.location && !packageUrl) {
let parsedPackage = await parseBlueprintPackage({
cwd,
packageName: blueprint.location
});
packageUrl = parsedPackage.url;
}
let isCustomBlueprint = !isDefaultBlueprint(blueprint);
let baseBlueprint = await getBaseBlueprint({
cwd,
blueprints,
blueprint
});
// If no base blueprint is found, set the selected one as the base blueprint.
// `glimmer`, `app`, and `addon` blueprints as well as ones whose `isBaseBlueprint` attribute is
// set to true will also have baseBlueprint undefined
if (!baseBlueprint) {
// for non-existing blueprints
blueprint.isBaseBlueprint = true;
}
if (typeof to !== 'string') {
to = defaultTo;
}
let endBlueprint;
let {
promise
} = await boilerplateUpdate({
cwd,
projectOptions: ({ packageJson }) => getProjectOptions(packageJson, blueprint),
mergeOptions: async function mergeOptions({
packageJson,
projectOptions
}) {
let startBlueprint = { ...blueprint };
endBlueprint = { ...blueprint };
delete endBlueprint.version;
if (isCustomBlueprint) {
await Promise.all([
_resolvePackage(startBlueprint, packageUrl, startBlueprint.version),
_resolvePackage(endBlueprint, packageUrl, to)
]);
} else {
let packageName = getPackageName(projectOptions);
let versions = await getVersions(packageName);
let getTagVersion = _getTagVersion(versions, packageName);
endBlueprint.version = await getTagVersion(to);
}
let customDiffOptions = getStartAndEndCommands({
packageJson,
baseBlueprint,
startBlueprint,
endBlueprint
});
return {
startVersion: startBlueprint.version,
endVersion: endBlueprint.version,
customDiffOptions
};
},
createCustomDiff: true,
ignoredFiles: [await getBlueprintRelativeFilePath(cwd)]
});
return {
promise: (async() => {
let result = await promise;
await saveBlueprint({
emberCliUpdateJsonPath,
blueprint: endBlueprint
});
await stageBlueprintFile({
cwd,
emberCliUpdateJsonPath
});
return result;
})()
};
};