-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.js
More file actions
248 lines (222 loc) · 7.9 KB
/
Copy pathindex.js
File metadata and controls
248 lines (222 loc) · 7.9 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
241
242
243
244
245
246
247
248
/**
* The "grunt-drupal-bootstrap" NPM module.
*
* The MIT License (MIT)
* Copyright (c) 2016 Mark Carver
*/
(function (exports) {
"use strict";
var _ = require('./lib/util/underscore');
var bower = require('./lib/bower');
var cwd = process.cwd();
var endpointParser = require('bower-endpoint-parser');
var file = require('./lib/util/file');
var grunt = require('grunt');
var path = require('path');
var preprocessor = require('./lib/preprocessor');
var Promise = require('grunt-promise').using('bluebird');
/**
* @module module:grunt-drupal-bootstrap
*/
var bootstrap = exports;
/**
* Contains configuration settings provided in the "drupal-bootstrap" property
* from a theme's package.json file.
*
* Don't use this property directly, you should use bootstrap.getConfig() and
* bootstrap.setConfig() respectively.
*
* @private
* @type {Object}
*/
bootstrap.config = {};
/**
* The current grunt task instance.
*
* @type {grunt.task.current}
*/
bootstrap.task = null;
/**
* Contains loaded preprocessors.
*
* @private
*
* @type {Object}
*/
bootstrap.preprocessors = {};
/**
* Performs an Promise based asynchronous exec child process.
*
* @param {string} cmd
* The command to execute.
* @param {Array} [args]
* An array of arguments to use.
* @param {Object} [options]
* An object of options to pass to child_process.exec.
*/
bootstrap.spawn = function (cmd, args, options) {
options = _.extend({stdio: 'inherit'}, options || {});
grunt.log.debug([].concat([cmd], args).join(' '));
return new Promise(function (resolve, reject) {
require('child_process').spawn(cmd, args || [], options)
.on('close', function (code) {
if (code !== 0) reject(code);
resolve();
});
}).catch(function (e) {
grunt.fail.fatal(new Error(e));
});
};
/**
* Installs the Bootstrap assets and preprocessor dependencies.
*
* @returns {Promise}
*/
bootstrap.install = function () {
var preprocessor = bootstrap.getPreprocessor();
return preprocessor.install()
.then(bower.install.bind(bower))
.map(preprocessor.postInstall.bind(preprocessor))
.then(function (endpoints) {
return bootstrap.removeBowerComponents()
.return(Promise.resolve(_.filter(endpoints)));
})
.map(function (endpoint) {
var e = _.clone(endpoint);
delete e.name;
return endpointParser.compose(e);
})
.then(function (endpoints) {
if (endpoints.length) grunt.log.writeln().writeln('Successfully installed: ' + endpoints.join(', '));
});
};
bootstrap.removeBowerComponents = function () {
return file.exists('bower_components').then(function (exists) {
if (exists) return file.remove('bower_components');
return Promise.resolve();
});
};
/**
* Retrieves a preprocessor instance.
*
* @param {String} [name]
* The name of the preprocessor to load.
*
* @returns {Preprocessor}
*/
bootstrap.getPreprocessor = function (name) {
if (!name && this.preprocessor) return this.preprocessor;
var preprocessor = name ? require('./lib/preprocessors/' + name) : require('./lib/preprocessor').none;
if (!preprocessor.installed) {
preprocessor.install();
}
if (['less', 'sass'].indexOf(preprocessor.name) === -1) {
grunt.fail.fatal("Your theme's package.json file must contain a valid `drupal-bootstrap.preprocessor` type; either `less` or `sass`.");
}
return this.preprocessor = preprocessor;
};
/**
* Wraps a grunt.registerPromise to inject the necessary initTask invocation.
*
* @param {string} name
* The name of the Grunt task to register.
* @param {string|function} [info]
* (Optional) Descriptive text explaining what the task does. Shows up on
* `--help`. You may omit this argument and replace it with `fn` instead.
* @param {function} [fn]
* (Required) The task function. Remember not to pass in your Promise
* function directly. Promise resolvers are immediately invoked when they
* are created. You should wrap the Promise with an anonymous task function
* instead.
*
* @returns {Function<Promise>|Object<Promise>}
*/
bootstrap.registerPromise = function (name, info, fn) {
var self = this;
if (!fn) {
fn = info;
info = null;
}
if (typeof fn !== 'function') {
grunt.fail.fatal(new Error('The "fn" argument for grunt.registerPromise or grunt.registerMultiPromise must be a function.'));
}
return grunt.registerPromise.apply(grunt.task, [name, info, function () {
self.initTask(this);
return fn.apply(this, this.args).finally(self.shutDown.bind(self));
}]);
};
/**
* Wraps a grunt.registerPromise to inject the necessary initTask invocation.
*
* @param {string} name
* The name of the Grunt task to register.
* @param {string|function} [info]
* (Optional) Descriptive text explaining what the task does. Shows up on
* `--help`. You may omit this argument and replace it with `fn` instead.
* @param {function} [fn]
* (Required) The task function. Remember not to pass in your Promise
* function directly. Promise resolvers are immediately invoked when they
* are created. You should wrap the Promise with an anonymous task function
* instead.
*
* @returns {Function<Promise>|Object<Promise>}
*/
bootstrap.registerMultiPromise = function (name, info, fn) {
var self = this;
if (!fn) {
fn = info;
info = null;
}
if (typeof fn !== 'function') {
grunt.fail.fatal(new Error('The "fn" argument for grunt.registerPromise or grunt.registerMultiPromise must be a function.'));
}
return grunt.registerMultiPromise.apply(grunt.task, [name, info, function () {
self.initTask(this);
return fn.apply(this, this.args).finally(self.shutDown.bind(self));
}]);
};
bootstrap.init = function (config) {
this.debug = !!grunt.option('debug');
this.force = !!grunt.option('force');
this.verbose = !!grunt.option('verbose');
this.pkg = grunt.file.readJSON('package.json') || {};
// Merge configuration from "drupal-bootstrap" property from the
// theme's package.json file.
this.config = _.merge(this.config, this.pkg['drupal-bootstrap'], config);
this.originalConfig = _.clone(this.config);
// Retrieve the preprocessor.
// @todo this should be moved out of the default config and into compiling
// so individual sources can be compiled as needed.
if (!this.config.preprocessor) this.config.preprocessor = 'less';
var preprocessor = this.getPreprocessor(this.config.preprocessor);
// Retrieve the library package and version.
// @todo this should be an array/object to allow multiple packages.
if (!this.config.package) this.config.package = 'bootstrap' + (preprocessor.name === 'sass' ? '-sass' : '');
if (!this.config.version) this.config.version = '^3.0.0';
// Initialize bower.
bower.init();
};
bootstrap.getConfig = function (name, defaultValue) {
return _(this.config).getNested(name, defaultValue);
};
bootstrap.setConfig = function (name, value) {
_(this.config).setNested(name, value);
return value;
};
bootstrap.initTask = function (currentTask) {
return this.task = currentTask;
};
/**
* Performs cleanup operations after a task has finished.
*/
bootstrap.shutDown = function () {
// If this is a test, don't save config back to this project's package.json.
if (grunt.option('is-test')) return;
var config = _.deepClean(this.config);
if (JSON.stringify(this.originalConfig) === JSON.stringify(config)) return Promise.resolve();
this.pkg['drupal-bootstrap'] = this.originalConfig = config;
return file.writeJSON(path.join(cwd, 'package.json'), this.pkg);
};
// Initialize the module.
bootstrap.init();
})(module.exports);