提交 73dfc04a 编写于 作者: L lang

更新build脚本,支持scripts标签引入build后的文件

上级 b082ea70
/*
* 图表按需加载,如需链接带入相关图表,选择性打开echarts.js中build注释内图表引用
*/
{
// appDir: './',
baseUrl: '../src',
//optimize: 'none', // 是否压缩
name: 'echarts',
packages: [
{
name: 'zrender',
location: '../../zrender/src',
main: 'zrender'
},
{
name: 'echarts',
location: '.',
main: 'echarts'
}
],
include:[
'echarts/chart/scatter',
'echarts/chart/k',
'echarts/chart/radar',
'echarts/chart/chord',
'echarts/chart/force',
'echarts/chart/map',
'echarts/util/mapData/china/0', // 全国
'echarts/util/mapData/china/65', // 新疆
'echarts/util/mapData/china/54', // 西藏
'echarts/util/mapData/china/15', // 内蒙古
'echarts/util/mapData/china/63', // 青海
'echarts/util/mapData/china/51', // 四川
'echarts/util/mapData/china/23', // 黑龙江
'echarts/util/mapData/china/62', // 甘肃
'echarts/util/mapData/china/53', // 云南
'echarts/util/mapData/china/45', // 广西
'echarts/util/mapData/china/43', // 湖南
'echarts/util/mapData/china/61', // 陕西
'echarts/util/mapData/china/44', // 广东
'echarts/util/mapData/china/22', // 吉林
'echarts/util/mapData/china/13', // 河北
'echarts/util/mapData/china/42', // 湖北
'echarts/util/mapData/china/52', // 贵州
'echarts/util/mapData/china/37', // 山东
'echarts/util/mapData/china/36', // 江西
'echarts/util/mapData/china/41', // 河南
'echarts/util/mapData/china/21', // 辽宁
'echarts/util/mapData/china/14', // 山西
'echarts/util/mapData/china/34', // 安徽
'echarts/util/mapData/china/35', // 福建
'echarts/util/mapData/china/33', // 浙江
'echarts/util/mapData/china/32', // 江苏
'echarts/util/mapData/china/50', // 重庆
'echarts/util/mapData/china/64', // 宁夏
'echarts/util/mapData/china/46', // 海南
'echarts/util/mapData/china/71', // 台湾
'echarts/util/mapData/china/11', // 北京
'echarts/util/mapData/china/12', // 天津
'echarts/util/mapData/china/31', // 上海
'echarts/util/mapData/china/81', // 香港
'echarts/util/mapData/china/82', // 澳门
'echarts/chart/line',
'echarts/chart/bar',
'echarts/chart/pie'
],
out: 'echarts-map.js'
}
\ No newline at end of file
/*
* 图表按需加载,如需链接带入相关图表,选择性打开echarts.js中build注释内图表引用
*/
{
// appDir: './',
baseUrl: '../src',
optimize: 'none', // 是否压缩
name: 'echarts',
packages: [
{
name: 'zrender',
location: '../../zrender/src',
main: 'zrender'
},
{
name: 'echarts',
location: '.',
main: 'echarts'
}
],
include:[
'echarts/chart/scatter',
'echarts/chart/k',
'echarts/chart/radar',
'echarts/chart/chord',
'echarts/chart/force',
/*
'echarts/chart/map',
'echarts/util/mapData/china/0', // 全国
'echarts/util/mapData/china/65', // 新疆
'echarts/util/mapData/china/54', // 西藏
'echarts/util/mapData/china/15', // 内蒙古
'echarts/util/mapData/china/63', // 青海
'echarts/util/mapData/china/51', // 四川
'echarts/util/mapData/china/23', // 黑龙江
'echarts/util/mapData/china/62', // 甘肃
'echarts/util/mapData/china/53', // 云南
'echarts/util/mapData/china/45', // 广西
'echarts/util/mapData/china/43', // 湖南
'echarts/util/mapData/china/61', // 陕西
'echarts/util/mapData/china/44', // 广东
'echarts/util/mapData/china/22', // 吉林
'echarts/util/mapData/china/13', // 河北
'echarts/util/mapData/china/42', // 湖北
'echarts/util/mapData/china/52', // 贵州
'echarts/util/mapData/china/37', // 山东
'echarts/util/mapData/china/36', // 江西
'echarts/util/mapData/china/41', // 河南
'echarts/util/mapData/china/21', // 辽宁
'echarts/util/mapData/china/14', // 山西
'echarts/util/mapData/china/34', // 安徽
'echarts/util/mapData/china/35', // 福建
'echarts/util/mapData/china/33', // 浙江
'echarts/util/mapData/china/32', // 江苏
'echarts/util/mapData/china/50', // 重庆
'echarts/util/mapData/china/64', // 宁夏
'echarts/util/mapData/china/46', // 海南
'echarts/util/mapData/china/71', // 台湾
'echarts/util/mapData/china/11', // 北京
'echarts/util/mapData/china/12', // 天津
'echarts/util/mapData/china/31', // 上海
'echarts/util/mapData/china/81', // 香港
'echarts/util/mapData/china/82', // 澳门
*/
'echarts/chart/line',
'echarts/chart/bar',
'echarts/chart/pie'
],
out: 'echarts-original.js'
}
\ No newline at end of file
node r.js -o build.js
node r.js -o build-original.js
node r.js -o build-map.js
node r.js -o build-original-map.js
\ No newline at end of file
node build.js optimize=true plain=false exclude=map output=echarts.js
node build.js optimize=false plain=false exclude=map output=echarts-original.js
node build.js optimize=true plain=false output=echarts-map.js
node build.js optimize=false plain=false output=echarts-original-map.js
node build.js optimize=true plain=true output=echarts-plain.js
node build.js optimize=false plain=true output=echarts-original-plain.js
\ No newline at end of file
/*
* 图表按需加载,如需链接带入相关图表,选择性打开echarts.js中build注释内图表引用
*/
{
// appDir: './',
baseUrl: '../src',
//optimize: 'none', // 是否压缩
name: 'echarts',
packages: [
{
name: 'zrender',
location: '../../zrender/src',
main: 'zrender'
},
{
name: 'echarts',
location: '.',
main: 'echarts'
}
],
include:[
'echarts/chart/scatter',
'echarts/chart/k',
'echarts/chart/radar',
'echarts/chart/chord',
'echarts/chart/force',
/*
'echarts/chart/map',
'echarts/util/mapData/china/0', // 全国
'echarts/util/mapData/china/65', // 新疆
'echarts/util/mapData/china/54', // 西藏
'echarts/util/mapData/china/15', // 内蒙古
'echarts/util/mapData/china/63', // 青海
'echarts/util/mapData/china/51', // 四川
'echarts/util/mapData/china/23', // 黑龙江
'echarts/util/mapData/china/62', // 甘肃
'echarts/util/mapData/china/53', // 云南
'echarts/util/mapData/china/45', // 广西
'echarts/util/mapData/china/43', // 湖南
'echarts/util/mapData/china/61', // 陕西
'echarts/util/mapData/china/44', // 广东
'echarts/util/mapData/china/22', // 吉林
'echarts/util/mapData/china/13', // 河北
'echarts/util/mapData/china/42', // 湖北
'echarts/util/mapData/china/52', // 贵州
'echarts/util/mapData/china/37', // 山东
'echarts/util/mapData/china/36', // 江西
'echarts/util/mapData/china/41', // 河南
'echarts/util/mapData/china/21', // 辽宁
'echarts/util/mapData/china/14', // 山西
'echarts/util/mapData/china/34', // 安徽
'echarts/util/mapData/china/35', // 福建
'echarts/util/mapData/china/33', // 浙江
'echarts/util/mapData/china/32', // 江苏
'echarts/util/mapData/china/50', // 重庆
'echarts/util/mapData/china/64', // 宁夏
'echarts/util/mapData/china/46', // 海南
'echarts/util/mapData/china/71', // 台湾
'echarts/util/mapData/china/11', // 北京
'echarts/util/mapData/china/12', // 天津
'echarts/util/mapData/china/31', // 上海
'echarts/util/mapData/china/81', // 香港
'echarts/util/mapData/china/82', // 澳门
*/
'echarts/chart/line',
'echarts/chart/bar',
'echarts/chart/pie'
],
out: 'echarts.js'
}
\ No newline at end of file
/**
* Example :
* node build.js optimize=true exclude=map,force,line output=echarts.js plain=true
* @param -o 是否压缩, 默认false
* @param exclude 不打包的图表,多个图表使用逗号分割, 默认使用所有图表
* @param output 输出打包地址,默认为echarts.js
* @param -p 是否打包esl, 打包的话可以直接使用scripts标签引入, 默认false
*/
var fs = require('fs');
var spawn = require('child_process').spawn;
var args = {};
process.argv.slice(2).forEach(function (val) {
var keyVal = val.split('=');
args[keyVal[0]] = keyVal[1];
});
var outputFile = args['output'] || 'echarts.js';
var exclude = args['exclude'] ? args['exclude'].split(',') : [];
var plain = args['plain'] === 'true' ? true : false;
var optimize = args['optimize'] === 'true' ? true : false;
var configTplStr = fs.readFileSync('./config-tpl.js', 'utf-8');
var configTpl = eval('(' + configTplStr + ')');
if (optimize) {
delete configTpl.optimize;
} else {
configTpl.optimize = 'none';
}
if (plain) {
configTpl.wrap = {
startFile : ['wrap/start.js', "wrap/almond.js"],
endFile : 'wrap/end.js'
}
} else {
delete configTpl.wrap;
}
configTpl.out = outputFile;
if (exclude) {
exclude.forEach(function(chartName) {
if (chartName === 'map') {
configTpl.include = configTpl.include.filter(function(path) {
return path.indexOf('map') < 0;
});
} else {
configTpl.include = configTpl.include.filter(function(path) {
return path !== 'echarts/chart/' + chartName;
});
}
});
var chartsRequire = ['define(function(require) {'];
configTpl.include.forEach(function(chartPath) {
chartsRequire.push(' require("' + chartPath + '");');
});
chartsRequire.push('});')
fs.writeFileSync('../src/_chart.js', chartsRequire.join('\n'), 'utf-8');
configTpl.include.push('_chart');
}
fs.writeFileSync('_config_tmp.js', JSON.stringify(configTpl), 'utf-8');
var buildProcess = spawn('node', ['r.js', '-o', '_config_tmp.js']);
buildProcess.on('close', function() {
fs.unlink('_config_tmp.js');
fs.unlink('../src/_chart.js');
});
buildProcess.stdout.setEncoding('utf-8');
buildProcess.stdout.on('data', function(data) {
console.log(data);
});
buildProcess.stderr.setEncoding('utf-8');
buildProcess.stderr.on('data', function(data) {
throw new Error(data);
});
#!/bin/bash
node r.js -o build.js
node r.js -o build-original.js
node r.js -o build-map.js
node r.js -o build-original-map.js
\ No newline at end of file
node build.js optimize=true plain=false exclude=map output=echarts.js
node build.js optimize=false plain=false exclude=map output=echarts-original.js
node build.js optimize=true plain=false output=echarts-map.js
node build.js optimize=false plain=false output=echarts-original-map.js
node build.js optimize=true plain=true output=echarts-plain.js
node build.js optimize=false plain=true output=echarts-original-plain.js
\ No newline at end of file
/*
* 图表按需加载,如需链接带入相关图表,选择性打开echarts.js中build注释内图表引用
*/
{
// appDir: './',
baseUrl: '../src',
......@@ -24,6 +21,7 @@
'echarts/chart/radar',
'echarts/chart/chord',
'echarts/chart/force',
'echarts/chart/map',
'echarts/util/mapData/china/0', // 全国
'echarts/util/mapData/china/65', // 新疆
......@@ -60,9 +58,14 @@
'echarts/util/mapData/china/31', // 上海
'echarts/util/mapData/china/81', // 香港
'echarts/util/mapData/china/82', // 澳门
'echarts/chart/line',
'echarts/chart/bar',
'echarts/chart/pie'
],
out: 'echarts-original-map.js'
wrap : {
startFile : ['wrap/start.js', "wrap/almond.js"],
endFile : 'wrap/end.js'
},
out: 'echarts.js'
}
\ No newline at end of file
/**
* almond 0.2.5 Copyright (c) 2011-2012, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* see: http://github.com/jrburke/almond for details
*/
//Going sloppy to avoid 'use strict' string cost, but strict practices should
//be followed.
/*jslint sloppy: true */
/*global setTimeout: false */
var requirejs, require, define;
(function (undef) {
var main, req, makeMap, handlers,
defined = {},
waiting = {},
config = {},
defining = {},
hasOwn = Object.prototype.hasOwnProperty,
aps = [].slice;
function hasProp(obj, prop) {
return hasOwn.call(obj, prop);
}
/**
* Given a relative module name, like ./something, normalize it to
* a real name that can be mapped to a path.
* @param {String} name the relative name
* @param {String} baseName a real name that the name arg is relative
* to.
* @returns {String} normalized name
*/
function normalize(name, baseName) {
var nameParts, nameSegment, mapValue, foundMap,
foundI, foundStarMap, starI, i, j, part,
baseParts = baseName && baseName.split("/"),
map = config.map,
starMap = (map && map['*']) || {};
//Adjust any relative paths.
if (name && name.charAt(0) === ".") {
//If have a base name, try to normalize against it,
//otherwise, assume it is a top-level require that will
//be relative to baseUrl in the end.
if (baseName) {
//Convert baseName to array, and lop off the last part,
//so that . matches that "directory" and not name of the baseName's
//module. For instance, baseName of "one/two/three", maps to
//"one/two/three.js", but we want the directory, "one/two" for
//this normalization.
baseParts = baseParts.slice(0, baseParts.length - 1);
name = baseParts.concat(name.split("/"));
//start trimDots
for (i = 0; i < name.length; i += 1) {
part = name[i];
if (part === ".") {
name.splice(i, 1);
i -= 1;
} else if (part === "..") {
if (i === 1 && (name[2] === '..' || name[0] === '..')) {
//End of the line. Keep at least one non-dot
//path segment at the front so it can be mapped
//correctly to disk. Otherwise, there is likely
//no path mapping for a path starting with '..'.
//This can still fail, but catches the most reasonable
//uses of ..
break;
} else if (i > 0) {
name.splice(i - 1, 2);
i -= 2;
}
}
}
//end trimDots
name = name.join("/");
} else if (name.indexOf('./') === 0) {
// No baseName, so this is ID is resolved relative
// to baseUrl, pull off the leading dot.
name = name.substring(2);
}
}
//Apply map config if available.
if ((baseParts || starMap) && map) {
nameParts = name.split('/');
for (i = nameParts.length; i > 0; i -= 1) {
nameSegment = nameParts.slice(0, i).join("/");
if (baseParts) {
//Find the longest baseName segment match in the config.
//So, do joins on the biggest to smallest lengths of baseParts.
for (j = baseParts.length; j > 0; j -= 1) {
mapValue = map[baseParts.slice(0, j).join('/')];
//baseName segment has config, find if it has one for
//this name.
if (mapValue) {
mapValue = mapValue[nameSegment];
if (mapValue) {
//Match, update name to the new value.
foundMap = mapValue;
foundI = i;
break;
}
}
}
}
if (foundMap) {
break;
}
//Check for a star map match, but just hold on to it,
//if there is a shorter segment match later in a matching
//config, then favor over this star map.
if (!foundStarMap && starMap && starMap[nameSegment]) {
foundStarMap = starMap[nameSegment];
starI = i;
}
}
if (!foundMap && foundStarMap) {
foundMap = foundStarMap;
foundI = starI;
}
if (foundMap) {
nameParts.splice(0, foundI, foundMap);
name = nameParts.join('/');
}
}
return name;
}
function makeRequire(relName, forceSync) {
return function () {
//A version of a require function that passes a moduleName
//value for items that may need to
//look up paths relative to the moduleName
return req.apply(undef, aps.call(arguments, 0).concat([relName, forceSync]));
};
}
function makeNormalize(relName) {
return function (name) {
return normalize(name, relName);
};
}
function makeLoad(depName) {
return function (value) {
defined[depName] = value;
};
}
function callDep(name) {
if (hasProp(waiting, name)) {
var args = waiting[name];
delete waiting[name];
defining[name] = true;
main.apply(undef, args);
}
if (!hasProp(defined, name) && !hasProp(defining, name)) {
throw new Error('No ' + name);
}
return defined[name];
}
//Turns a plugin!resource to [plugin, resource]
//with the plugin being undefined if the name
//did not have a plugin prefix.
function splitPrefix(name) {
var prefix,
index = name ? name.indexOf('!') : -1;
if (index > -1) {
prefix = name.substring(0, index);
name = name.substring(index + 1, name.length);
}
return [prefix, name];
}
/**
* Makes a name map, normalizing the name, and using a plugin
* for normalization if necessary. Grabs a ref to plugin
* too, as an optimization.
*/
makeMap = function (name, relName) {
var plugin,
parts = splitPrefix(name),
prefix = parts[0];
name = parts[1];
if (prefix) {
prefix = normalize(prefix, relName);
plugin = callDep(prefix);
}
//Normalize according
if (prefix) {
if (plugin && plugin.normalize) {
name = plugin.normalize(name, makeNormalize(relName));
} else {
name = normalize(name, relName);
}
} else {
name = normalize(name, relName);
parts = splitPrefix(name);
prefix = parts[0];
name = parts[1];
if (prefix) {
plugin = callDep(prefix);
}
}
//Using ridiculous property names for space reasons
return {
f: prefix ? prefix + '!' + name : name, //fullName
n: name,
pr: prefix,
p: plugin
};
};
function makeConfig(name) {
return function () {
return (config && config.config && config.config[name]) || {};
};
}
handlers = {
require: function (name) {
return makeRequire(name);
},
exports: function (name) {
var e = defined[name];
if (typeof e !== 'undefined') {
return e;
} else {
return (defined[name] = {});
}
},
module: function (name) {
return {
id: name,
uri: '',
exports: defined[name],
config: makeConfig(name)
};
}
};
main = function (name, deps, callback, relName) {
var cjsModule, depName, ret, map, i,
args = [],
usingExports;
//Use name if no relName
relName = relName || name;
//Call the callback to define the module, if necessary.
if (typeof callback === 'function') {
//Pull out the defined dependencies and pass the ordered
//values to the callback.
//Default to [require, exports, module] if no deps
deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
for (i = 0; i < deps.length; i += 1) {
map = makeMap(deps[i], relName);
depName = map.f;
//Fast path CommonJS standard dependencies.
if (depName === "require") {
args[i] = handlers.require(name);
} else if (depName === "exports") {
//CommonJS module spec 1.1
args[i] = handlers.exports(name);
usingExports = true;
} else if (depName === "module") {
//CommonJS module spec 1.1
cjsModule = args[i] = handlers.module(name);
} else if (hasProp(defined, depName) ||
hasProp(waiting, depName) ||
hasProp(defining, depName)) {
args[i] = callDep(depName);
} else if (map.p) {
map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
args[i] = defined[depName];
} else {
throw new Error(name + ' missing ' + depName);
}
}
ret = callback.apply(defined[name], args);
if (name) {
//If setting exports via "module" is in play,
//favor that over return value and exports. After that,
//favor a non-undefined return value over exports use.
if (cjsModule && cjsModule.exports !== undef &&
cjsModule.exports !== defined[name]) {
defined[name] = cjsModule.exports;
} else if (ret !== undef || !usingExports) {
//Use the return value from the function.
defined[name] = ret;
}
}
} else if (name) {
//May just be an object definition for the module. Only
//worry about defining if have a module name.
defined[name] = callback;
}
};
requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
if (typeof deps === "string") {
if (handlers[deps]) {
//callback in this case is really relName
return handlers[deps](callback);
}
//Just return the module wanted. In this scenario, the
//deps arg is the module name, and second arg (if passed)
//is just the relName.
//Normalize module name, if it contains . or ..
return callDep(makeMap(deps, callback).f);
} else if (!deps.splice) {
//deps is a config object, not an array.
config = deps;
if (callback.splice) {
//callback is an array, which means it is a dependency list.
//Adjust args if there are dependencies
deps = callback;
callback = relName;
relName = null;
} else {
deps = undef;
}
}
//Support require(['a'])
callback = callback || function () {};
//If relName is a function, it is an errback handler,
//so remove it.
if (typeof relName === 'function') {
relName = forceSync;
forceSync = alt;
}
//Simulate async callback;
if (forceSync) {
main(undef, deps, callback, relName);
} else {
//Using a non-zero value because of concern for what old browsers
//do, and latest browsers "upgrade" to 4 if lower value is used:
//http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
//If want a value immediately, use require('id') instead -- something
//that works in almond on the global level, but not guaranteed and
//unlikely to work in other AMD implementations.
setTimeout(function () {
main(undef, deps, callback, relName);
}, 4);
}
return req;
};
/**
* Just drops the config on the floor, but returns req in case
* the config return value is used.
*/
req.config = function (cfg) {
config = cfg;
if (config.deps) {
req(config.deps, config.callback);
}
return req;
};
define = function (name, deps, callback) {
//This module may not have dependencies
if (!deps.splice) {
//deps is not an array, so probably means
//an object literal or factory function for
//the value. Adjust args.
callback = deps;
deps = [];
}
if (!hasProp(defined, name) && !hasProp(waiting, name)) {
waiting[name] = [name, deps, callback];
}
};
define.amd = {
jQuery: true
};
}());
var zrender = require('zrender');
zrender.tool = {
color : require('zrender/tool/color'),
math : require('zrender/tool/math'),
util : require('zrender/tool/util'),
vector : require('zrender/tool/vector'),
area : require('zrender/tool/area'),
event : require('zrender/tool/event')
}
zrender.animation = {
Animation : require('zrender/animation/animation'),
Cip : require('zrender/animation/clip'),
easing : require('zrender/animation/easing')
}
// 加载需要的图表,由build.js临时生成
var chart = require('_chart');
_global['echarts'] = require("echarts");
_global['zrender'] = zrender;
})(window);
(function(_global){
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册