We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96eb4bf + fe3dabe commit 6f0beb1Copy full SHA for 6f0beb1
lib/utilities/pristine.js
@@ -283,10 +283,10 @@ function updateEmberSource(appName, version) {
283
let packageJSON = fs.readJsonSync(packageJSONPath);
284
285
// If we're not using bower, but the ember version is canary, we change it to
286
- // beta instead. This is because ember-source does not support canary releases.
+ // latest instead. This is because ember-source does not support canary releases.
287
if (!usesBower && version === 'canary') {
288
debug('ember-source cannot use canary releases, defaulting to beta');
289
- version = 'beta';
+ version = 'latest';
290
}
291
292
if (packageJSON.devDependencies.hasOwnProperty('ember-source')) {
0 commit comments