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
|
/*******************************************************************************
* @license
* Copyright (c) 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution
* License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html).
*
* Contributors: IBM Corporation - initial API and implementation
******************************************************************************/
/*
* Helpers for the grunt build script.
*/
/*eslint-env browser, node*/
/*eslint no-new-func:0*/
var _path = require("path");
module.exports = function(grunt) {
var self = {};
function replaceProperties(str, props) {
props = props || {};
return str.replace(/\$\{([^}]*)\}/g, function(match, propertyName) {
if (props[propertyName] === undefined)
throw new Error("Property not found, cannot replace: " + propertyName);
// grunt.log.writeln("Replace ", propertyName, "with", props[propertyName]);
return props[propertyName];
});
}
self.loadBuildConfig = function(configPath) {
return (new Function("var bc = " + grunt.file.read(configPath) + "; return bc;"))();
};
/**
* @returns {Bundle[]} where Bundle is {{ name: string, path: string, web: string }}
*/
self.parseBundles = function(buildConfig, replacements) {
return buildConfig.bundles.map(function(path) {
path = replaceProperties(path, replacements);
return {
name: _path.basename(path),
path: path,
web: _path.join(path, "web")
};
});
};
/**
* @returns {Object} A copy of `config` with the `excludeModules` removed from its `modules` section.
*/
self.filterBuildConfig = function(config, excludeModules) {
excludeModules = excludeModules || [];
var clone = JSON.parse(JSON.stringify(config));
clone.modules = clone.modules && clone.modules.filter(function(module) {
var baseName = module.name.split("/").pop();
return excludeModules.indexOf(baseName) === -1;
});
return clone;
};
self.mixin = function(target/*, source..*/) {
if (!target || typeof target !== "object")
throw new Error("target is required");
for (var j = 1; j < arguments.length; j++) {
var source = arguments[j];
for (var key in source)
if (Object.prototype.hasOwnProperty.call(source, key))
target[key] = source[key];
}
return target;
};
return self;
};
|