forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.js
102 lines (86 loc) · 2.76 KB
/
project.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
var fs = require('fs');
var path = require('path');
var _ = require('underscore');
var files = require('./files.js');
var project = exports;
var getLines = function (file) {
var raw = fs.readFileSync(file, 'utf8');
var lines = raw.split(/\r*\n\r*/);
// strip blank lines at the end
while (lines.length) {
var line = lines[lines.length - 1];
if (line.match(/\S/))
break;
lines.pop();
}
return lines;
};
var getPackagesLines = function (appDir) {
return getLines(path.join(appDir, '.meteor', 'packages'));
};
var trimLine = function (line) {
var match = line.match(/^([^#]*)#/);
if (match)
line = match[1];
line = line.replace(/^\s+|\s+$/g, ''); // leading/trailing whitespace
return line;
};
var writePackages = function (appDir, lines) {
fs.writeFileSync(path.join(appDir, '.meteor', 'packages'),
lines.join('\n') + '\n', 'utf8');
};
// Package names used by this project.
project.getPackages = function (appDir) {
var ret = [];
// read from .meteor/packages
_.each(getPackagesLines(appDir), function (line) {
line = trimLine(line);
if (line !== '')
ret.push(line);
});
return ret;
};
var meteorReleaseFilePath = function (appDir) {
return path.join(appDir, '.meteor', 'release');
};
// This will return "none" if the project is not pinned to a release
// (it was created by a checkout), or null for a legacy app with no
// .meteor/release file. It returns the empty string if the file exists
// but is empty.
project.getMeteorReleaseVersion = function (appDir) {
var releasePath = meteorReleaseFilePath(appDir);
try {
var lines = getLines(releasePath);
} catch (e) {
return null;
}
// This should really never happen, and the caller will print a special error.
if (!lines.length)
return '';
return trimLine(lines[0]);
};
// Pass "none" if you don't want the project to be pinned to a Meteor
// release (typically used when the app was created by a checkout).
project.writeMeteorReleaseVersion = function (appDir, release) {
var releasePath = meteorReleaseFilePath(appDir);
fs.writeFileSync(releasePath, release + '\n');
};
project.addPackage = function (appDir, name) {
var lines = getPackagesLines(appDir);
// detail: if the file starts with a comment, try to keep a single
// blank line after the comment (unless the user removes it)
var current = project.getPackages(appDir);
if (_.contains(current, name))
return;
if (!current.length && lines.length)
lines.push('');
lines.push(name);
writePackages(appDir, lines);
};
project.removePackage = function (appDir, name) {
// XXX assume no special regexp characters
var lines = _.reject(getPackagesLines(appDir), function (line) {
return trimLine(line) === name;
});
writePackages(appDir, lines);
};