forked from sethwebster/ember-cli-new-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
55 lines (45 loc) · 1.36 KB
/
index.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
/* eslint-env node */
'use strict';
const writeFile = require('broccoli-file-creator');
module.exports = {
name: require('./package').name,
/**
* Store `ember-cli-build.js` options
*/
included: function(app/*, parentAddon*/) {
this._super.included.apply(this, arguments);
this._options = app.options.newVersion || {};
if (this._options.enabled === true) {
this._options.fileName = this._options.fileName || 'VERSION.txt';
this._options.prepend = this._options.prepend || '';
this._options.useAppVersion = this._options.useAppVersion || false;
}
},
/**
* Copy version from `ember-cli-app-version`
*/
config: function(env, baseConfig) {
this._appVersion = baseConfig.APP.version || null;
},
/**
* Write version file
*
* based on
* - ember-cli-app-version if installed
* - package.json of consuming application or
*/
treeForPublic: function() {
let detectedVersion;
if (this._options.useAppVersion && this._appVersion) {
detectedVersion = this._appVersion;
}
if (!detectedVersion) {
detectedVersion = this.parent.pkg.version;
}
if (detectedVersion && this._options.enabled) {
const fileName = this._options.fileName;
this.ui.writeLine(`Created ${fileName} with ${detectedVersion}`);
return writeFile(fileName, detectedVersion);
}
}
};