Move almada and require.js from source control to npm
This commit is contained in:
parent
b6db366d0e
commit
651a53d64a
6 changed files with 24 additions and 1028 deletions
6
assets.js
Normal file
6
assets.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
const JS = [
|
||||||
|
'alameda/alameda.js',
|
||||||
|
'requirejs/require.js'
|
||||||
|
];
|
||||||
|
|
||||||
|
module.exports = [...JS];
|
|
@ -5,6 +5,7 @@
|
||||||
"repository": "https://github.com/jellyfin/jellyfin-web",
|
"repository": "https://github.com/jellyfin/jellyfin-web",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"clean-webpack-plugin": "^3.0.0",
|
||||||
"copy-webpack-plugin": "^5.0.3",
|
"copy-webpack-plugin": "^5.0.3",
|
||||||
"css-loader": "^2.1.0",
|
"css-loader": "^2.1.0",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
|
@ -16,12 +17,14 @@
|
||||||
"webpack-merge": "^4.2.2"
|
"webpack-merge": "^4.2.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"alameda": "^1.3.0",
|
||||||
"flv.js": "^1.5.0",
|
"flv.js": "^1.5.0",
|
||||||
"hls.js": "^0.12.4",
|
"hls.js": "^0.12.4",
|
||||||
"howler": "^2.1.2",
|
"howler": "^2.1.2",
|
||||||
"jquery": "^3.4.1",
|
"jquery": "^3.4.1",
|
||||||
"jstree": "^3.3.7",
|
"jstree": "^3.3.7",
|
||||||
"libjass": "^0.11.0",
|
"libjass": "^0.11.0",
|
||||||
|
"requirejs": "^2.3.5",
|
||||||
"shaka-player": "^2.5.5",
|
"shaka-player": "^2.5.5",
|
||||||
"sortablejs": "^1.9.0",
|
"sortablejs": "^1.9.0",
|
||||||
"swiper": "^3.4.2"
|
"swiper": "^3.4.2"
|
||||||
|
|
419
src/bower_components/alameda/alameda.js
vendored
419
src/bower_components/alameda/alameda.js
vendored
|
@ -1,419 +0,0 @@
|
||||||
var requirejs, require, define;
|
|
||||||
! function(global, Promise, undef) {
|
|
||||||
function commentReplace(match, singlePrefix) {
|
|
||||||
return singlePrefix || ""
|
|
||||||
}
|
|
||||||
|
|
||||||
function hasProp(obj, prop) {
|
|
||||||
return hasOwn.call(obj, prop)
|
|
||||||
}
|
|
||||||
|
|
||||||
function getOwn(obj, prop) {
|
|
||||||
return obj && hasProp(obj, prop) && obj[prop]
|
|
||||||
}
|
|
||||||
|
|
||||||
function obj() {
|
|
||||||
return Object.create(null)
|
|
||||||
}
|
|
||||||
|
|
||||||
function eachProp(obj, func) {
|
|
||||||
var prop;
|
|
||||||
for (prop in obj)
|
|
||||||
if (hasProp(obj, prop) && func(obj[prop], prop)) break
|
|
||||||
}
|
|
||||||
|
|
||||||
function mixin(target, source, force, deepStringMixin) {
|
|
||||||
return source && eachProp(source, function(value, prop) {
|
|
||||||
!force && hasProp(target, prop) || (!deepStringMixin || "object" != typeof value || !value || Array.isArray(value) || "function" == typeof value || value instanceof RegExp ? target[prop] = value : (target[prop] || (target[prop] = {}), mixin(target[prop], value, force, deepStringMixin)))
|
|
||||||
}), target
|
|
||||||
}
|
|
||||||
|
|
||||||
function getGlobal(value) {
|
|
||||||
if (!value) return value;
|
|
||||||
var g = global;
|
|
||||||
return value.split(".").forEach(function(part) {
|
|
||||||
g = g[part]
|
|
||||||
}), g
|
|
||||||
}
|
|
||||||
|
|
||||||
function newContext(contextName) {
|
|
||||||
function trimDots(ary) {
|
|
||||||
var i, part, length = ary.length;
|
|
||||||
for (i = 0; i < length; i++)
|
|
||||||
if ("." === (part = ary[i])) ary.splice(i, 1), i -= 1;
|
|
||||||
else if (".." === part) {
|
|
||||||
if (0 === i || 1 === i && ".." === ary[2] || ".." === ary[i - 1]) continue;
|
|
||||||
i > 0 && (ary.splice(i - 1, 2), i -= 2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalize(name, baseName, applyMap) {
|
|
||||||
var mapValue, nameParts, i, j, nameSegment, lastIndex, foundMap, foundI, foundStarMap, starI, baseParts = baseName && baseName.split("/"),
|
|
||||||
normalizedBaseParts = baseParts,
|
|
||||||
map = config.map,
|
|
||||||
starMap = map && map["*"];
|
|
||||||
if (name && (name = name.split("/"), lastIndex = name.length - 1, config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex]) && (name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, "")), "." === name[0].charAt(0) && baseParts && (normalizedBaseParts = baseParts.slice(0, baseParts.length - 1), name = normalizedBaseParts.concat(name)), trimDots(name), name = name.join("/")), applyMap && map && (baseParts || starMap)) {
|
|
||||||
nameParts = name.split("/");
|
|
||||||
outerLoop: for (i = nameParts.length; i > 0; i -= 1) {
|
|
||||||
if (nameSegment = nameParts.slice(0, i).join("/"), baseParts)
|
|
||||||
for (j = baseParts.length; j > 0; j -= 1)
|
|
||||||
if ((mapValue = getOwn(map, baseParts.slice(0, j).join("/"))) && (mapValue = getOwn(mapValue, nameSegment))) {
|
|
||||||
foundMap = mapValue, foundI = i;
|
|
||||||
break outerLoop
|
|
||||||
}! foundStarMap && starMap && getOwn(starMap, nameSegment) && (foundStarMap = getOwn(starMap, nameSegment), starI = i)
|
|
||||||
}!foundMap && foundStarMap && (foundMap = foundStarMap, foundI = starI), foundMap && (nameParts.splice(0, foundI, foundMap), name = nameParts.join("/"))
|
|
||||||
}
|
|
||||||
return getOwn(config.pkgs, name) || name
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeShimExports(value) {
|
|
||||||
function fn() {
|
|
||||||
var ret;
|
|
||||||
return value.init && (ret = value.init.apply(global, arguments)), ret || value.exports && getGlobal(value.exports)
|
|
||||||
}
|
|
||||||
return fn
|
|
||||||
}
|
|
||||||
|
|
||||||
function takeQueue(anonId) {
|
|
||||||
var i, id, args, shim;
|
|
||||||
for (i = 0; i < queue.length; i += 1) {
|
|
||||||
if ("string" != typeof queue[i][0]) {
|
|
||||||
if (!anonId) break;
|
|
||||||
queue[i].unshift(anonId), anonId = undef
|
|
||||||
}
|
|
||||||
args = queue.shift(), id = args[0], i -= 1, id in defined || id in waiting || (id in deferreds ? main.apply(undef, args) : waiting[id] = args)
|
|
||||||
}
|
|
||||||
anonId && (shim = getOwn(config.shim, anonId) || {}, main(anonId, shim.deps || [], shim.exportsFn))
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeRequire(relName, topLevel) {
|
|
||||||
var req = function(deps, callback, errback, alt) {
|
|
||||||
var name, cfg;
|
|
||||||
if (topLevel && takeQueue(), "string" == typeof deps) {
|
|
||||||
if (handlers[deps]) return handlers[deps](relName);
|
|
||||||
if (!((name = makeMap(deps, relName, !0).id) in defined)) throw new Error("Not loaded: " + name);
|
|
||||||
return defined[name]
|
|
||||||
}
|
|
||||||
return deps && !Array.isArray(deps) && (cfg = deps, deps = undef, Array.isArray(callback) && (deps = callback, callback = errback, errback = alt), topLevel) ? req.config(cfg)(deps, callback, errback) : (callback = callback || function() {
|
|
||||||
return slice.call(arguments, 0)
|
|
||||||
}, asyncResolve.then(function() {
|
|
||||||
return takeQueue(), main(undef, deps || [], callback, errback, relName)
|
|
||||||
}))
|
|
||||||
};
|
|
||||||
return req.isBrowser = "undefined" != typeof document && "undefined" != typeof navigator, req.nameToUrl = function(moduleName, ext, skipExt) {
|
|
||||||
var paths, syms, i, parentModule, url, parentPath, bundleId, pkgMain = getOwn(config.pkgs, moduleName);
|
|
||||||
if (pkgMain && (moduleName = pkgMain), bundleId = getOwn(bundlesMap, moduleName)) return req.nameToUrl(bundleId, ext, skipExt);
|
|
||||||
if (urlRegExp.test(moduleName)) url = moduleName + (ext || "");
|
|
||||||
else {
|
|
||||||
for (paths = config.paths, syms = moduleName.split("/"), i = syms.length; i > 0; i -= 1)
|
|
||||||
if (parentModule = syms.slice(0, i).join("/"), parentPath = getOwn(paths, parentModule)) {
|
|
||||||
Array.isArray(parentPath) && (parentPath = parentPath[0]), syms.splice(0, i, parentPath);
|
|
||||||
break
|
|
||||||
} url = syms.join("/"), url += ext || (/^data\:|^blob\:|\?/.test(url) || skipExt ? "" : ".js"), url = ("/" === url.charAt(0) || url.match(/^[\w\+\.\-]+:/) ? "" : config.baseUrl) + url
|
|
||||||
}
|
|
||||||
return config.urlArgs && !/^blob\:/.test(url) ? url + config.urlArgs(moduleName, url) : url
|
|
||||||
}, req.toUrl = function(moduleNamePlusExt) {
|
|
||||||
var ext, index = moduleNamePlusExt.lastIndexOf("."),
|
|
||||||
segment = moduleNamePlusExt.split("/")[0],
|
|
||||||
isRelative = "." === segment || ".." === segment;
|
|
||||||
return -1 !== index && (!isRelative || index > 1) && (ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length), moduleNamePlusExt = moduleNamePlusExt.substring(0, index)), req.nameToUrl(normalize(moduleNamePlusExt, relName), ext, !0)
|
|
||||||
}, req.defined = function(id) {
|
|
||||||
return makeMap(id, relName, !0).id in defined
|
|
||||||
}, req.specified = function(id) {
|
|
||||||
return (id = makeMap(id, relName, !0).id) in defined || id in deferreds
|
|
||||||
}, req
|
|
||||||
}
|
|
||||||
|
|
||||||
function resolve(name, d, value) {
|
|
||||||
name && (defined[name] = value, requirejs.onResourceLoad && requirejs.onResourceLoad(context, d.map, d.deps)), d.finished = !0, d.resolve(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
function reject(d, err) {
|
|
||||||
d.finished = !0, d.rejected = !0, d.reject(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeNormalize(relName) {
|
|
||||||
return function(name) {
|
|
||||||
return normalize(name, relName, !0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function defineModule(d) {
|
|
||||||
d.factoryCalled = !0;
|
|
||||||
var ret, name = d.map.id;
|
|
||||||
try {
|
|
||||||
ret = context.execCb(name, d.factory, d.values, defined[name])
|
|
||||||
} catch (err) {
|
|
||||||
return reject(d, err)
|
|
||||||
}
|
|
||||||
name ? ret === undef && (d.cjsModule ? ret = d.cjsModule.exports : d.usingExports && (ret = defined[name])) : requireDeferreds.splice(requireDeferreds.indexOf(d), 1), resolve(name, d, ret)
|
|
||||||
}
|
|
||||||
|
|
||||||
function depFinished(val, i) {
|
|
||||||
this.rejected || this.depDefined[i] || (this.depDefined[i] = !0, this.depCount += 1, this.values[i] = val, this.depending || this.depCount !== this.depMax || defineModule(this))
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeDefer(name, calculatedMap) {
|
|
||||||
var d = {};
|
|
||||||
return d.promise = new Promise(function(resolve, reject) {
|
|
||||||
d.resolve = resolve, d.reject = function(err) {
|
|
||||||
name || requireDeferreds.splice(requireDeferreds.indexOf(d), 1), reject(err)
|
|
||||||
}
|
|
||||||
}), d.map = name ? calculatedMap || makeMap(name) : {}, d.depCount = 0, d.depMax = 0, d.values = [], d.depDefined = [], d.depFinished = depFinished, d.map.pr && (d.deps = [makeMap(d.map.pr)]), d
|
|
||||||
}
|
|
||||||
|
|
||||||
function getDefer(name, calculatedMap) {
|
|
||||||
var d;
|
|
||||||
return name ? (d = name in deferreds && deferreds[name]) || (d = deferreds[name] = makeDefer(name, calculatedMap)) : (d = makeDefer(), requireDeferreds.push(d)), d
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeErrback(d, name) {
|
|
||||||
return function(err) {
|
|
||||||
d.rejected || (err.dynaId || (err.dynaId = "id" + (errCount += 1), err.requireModules = [name]), reject(d, err))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function waitForDep(depMap, relName, d, i) {
|
|
||||||
d.depMax += 1, callDep(depMap, relName).then(function(val) {
|
|
||||||
d.depFinished(val, i)
|
|
||||||
}, makeErrback(d, depMap.id)).catch(makeErrback(d, d.map.id))
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeLoad(id) {
|
|
||||||
function load(value) {
|
|
||||||
fromTextCalled || resolve(id, getDefer(id), value)
|
|
||||||
}
|
|
||||||
var fromTextCalled;
|
|
||||||
return load.error = function(err) {
|
|
||||||
reject(getDefer(id), err)
|
|
||||||
}, load.fromText = function(text, textAlt) {
|
|
||||||
var execError, d = getDefer(id),
|
|
||||||
map = makeMap(makeMap(id).n),
|
|
||||||
plainId = map.id;
|
|
||||||
fromTextCalled = !0, d.factory = function(p, val) {
|
|
||||||
return val
|
|
||||||
}, textAlt && (text = textAlt), hasProp(config.config, id) && (config.config[plainId] = config.config[id]);
|
|
||||||
try {
|
|
||||||
req.exec(text)
|
|
||||||
} catch (e) {
|
|
||||||
execError = new Error("fromText eval for " + plainId + " failed: " + e), execError.requireType = "fromtexteval", reject(d, execError)
|
|
||||||
}
|
|
||||||
takeQueue(plainId), d.deps = [map], waitForDep(map, null, d, d.deps.length)
|
|
||||||
}, load
|
|
||||||
}
|
|
||||||
|
|
||||||
function callPlugin(plugin, map, relName) {
|
|
||||||
plugin.load(map.n, makeRequire(relName), makeLoad(map.id), config)
|
|
||||||
}
|
|
||||||
|
|
||||||
function splitPrefix(name) {
|
|
||||||
var prefix, index = name ? name.indexOf("!") : -1;
|
|
||||||
return index > -1 && (prefix = name.substring(0, index), name = name.substring(index + 1, name.length)), [prefix, name]
|
|
||||||
}
|
|
||||||
|
|
||||||
function breakCycle(d, traced, processed) {
|
|
||||||
var id = d.map.id;
|
|
||||||
traced[id] = !0, !d.finished && d.deps && d.deps.forEach(function(depMap) {
|
|
||||||
var depId = depMap.id,
|
|
||||||
dep = !hasProp(handlers, depId) && getDefer(depId, depMap);
|
|
||||||
!dep || dep.finished || processed[depId] || (hasProp(traced, depId) ? d.deps.forEach(function(depMap, i) {
|
|
||||||
depMap.id === depId && d.depFinished(defined[depId], i)
|
|
||||||
}) : breakCycle(dep, traced, processed))
|
|
||||||
}), processed[id] = !0
|
|
||||||
}
|
|
||||||
|
|
||||||
function check(d) {
|
|
||||||
var err, mid, dfd, notFinished = [],
|
|
||||||
waitInterval = 1e3 * config.waitSeconds,
|
|
||||||
expired = waitInterval && startTime + waitInterval < (new Date).getTime();
|
|
||||||
if (0 === loadCount && (d ? d.finished || breakCycle(d, {}, {}) : requireDeferreds.length && requireDeferreds.forEach(function(d) {
|
|
||||||
breakCycle(d, {}, {})
|
|
||||||
})), expired) {
|
|
||||||
for (mid in deferreds) dfd = deferreds[mid], dfd.finished || notFinished.push(dfd.map.id);
|
|
||||||
err = new Error("Timeout for modules: " + notFinished), err.requireModules = notFinished, err.requireType = "timeout", notFinished.forEach(function(id) {
|
|
||||||
reject(getDefer(id), err)
|
|
||||||
})
|
|
||||||
} else(loadCount || requireDeferreds.length) && (checkingLater || (checkingLater = !0, setTimeout(function() {
|
|
||||||
checkingLater = !1, check()
|
|
||||||
}, 70)))
|
|
||||||
}
|
|
||||||
|
|
||||||
function delayedError(e) {
|
|
||||||
console.log(e.stack);
|
|
||||||
return setTimeout(function() {
|
|
||||||
e.dynaId && trackedErrors[e.dynaId] || (trackedErrors[e.dynaId] = !0, req.onError(e))
|
|
||||||
}), e
|
|
||||||
}
|
|
||||||
var req, main, makeMap, callDep, handlers, checkingLater, load, context, defined = obj(),
|
|
||||||
waiting = obj(),
|
|
||||||
config = {
|
|
||||||
waitSeconds: 7,
|
|
||||||
baseUrl: "./",
|
|
||||||
paths: {},
|
|
||||||
bundles: {},
|
|
||||||
pkgs: {},
|
|
||||||
shim: {},
|
|
||||||
config: {}
|
|
||||||
},
|
|
||||||
mapCache = obj(),
|
|
||||||
requireDeferreds = [],
|
|
||||||
deferreds = obj(),
|
|
||||||
calledDefine = obj(),
|
|
||||||
calledPlugin = obj(),
|
|
||||||
loadCount = 0,
|
|
||||||
startTime = (new Date).getTime(),
|
|
||||||
errCount = 0,
|
|
||||||
trackedErrors = obj(),
|
|
||||||
urlFetched = obj(),
|
|
||||||
bundlesMap = obj(),
|
|
||||||
asyncResolve = Promise.resolve(undefined);
|
|
||||||
return load = "function" == typeof importScripts ? function(map) {
|
|
||||||
var url = map.url;
|
|
||||||
urlFetched[url] || (urlFetched[url] = !0, getDefer(map.id), importScripts(url), takeQueue(map.id))
|
|
||||||
} : function(map) {
|
|
||||||
var script, id = map.id,
|
|
||||||
url = map.url;
|
|
||||||
urlFetched[url] || (urlFetched[url] = !0, script = document.createElement("script"), script.setAttribute("data-requiremodule", id), script.type = config.scriptType || "text/javascript", script.charset = "utf-8", script.async = !0, loadCount += 1, script.addEventListener("load", function() {
|
|
||||||
loadCount -= 1, takeQueue(id)
|
|
||||||
}, !1), script.addEventListener("error", function() {
|
|
||||||
loadCount -= 1;
|
|
||||||
var err, pathConfig = getOwn(config.paths, id);
|
|
||||||
if (pathConfig && Array.isArray(pathConfig) && pathConfig.length > 1) {
|
|
||||||
script.parentNode.removeChild(script), pathConfig.shift();
|
|
||||||
var d = getDefer(id);
|
|
||||||
d.map = makeMap(id), d.map.url = req.nameToUrl(id), load(d.map)
|
|
||||||
} else err = new Error("Load failed: " + id + ": " + script.src), err.requireModules = [id], err.requireType = "scripterror", reject(getDefer(id), err)
|
|
||||||
}, !1), script.src = url, 10 === document.documentMode ? asap.then(function() {
|
|
||||||
document.head.appendChild(script)
|
|
||||||
}) : document.head.appendChild(script))
|
|
||||||
}, callDep = function(map, relName) {
|
|
||||||
var args, bundleId, name = map.id,
|
|
||||||
shim = config.shim[name];
|
|
||||||
if (name in waiting) args = waiting[name], delete waiting[name], main.apply(undef, args);
|
|
||||||
else if (!(name in deferreds))
|
|
||||||
if (map.pr) {
|
|
||||||
if (!(bundleId = getOwn(bundlesMap, name))) return callDep(makeMap(map.pr)).then(function(plugin) {
|
|
||||||
var newMap = map.prn ? map : makeMap(name, relName, !0),
|
|
||||||
newId = newMap.id,
|
|
||||||
shim = getOwn(config.shim, newId);
|
|
||||||
return newId in calledPlugin || (calledPlugin[newId] = !0, shim && shim.deps ? req(shim.deps, function() {
|
|
||||||
callPlugin(plugin, newMap, relName)
|
|
||||||
}) : callPlugin(plugin, newMap, relName)), getDefer(newId).promise
|
|
||||||
});
|
|
||||||
map.url = req.nameToUrl(bundleId), load(map)
|
|
||||||
} else shim && shim.deps ? req(shim.deps, function() {
|
|
||||||
load(map)
|
|
||||||
}) : load(map);
|
|
||||||
return getDefer(name).promise
|
|
||||||
}, makeMap = function(name, relName, applyMap) {
|
|
||||||
if ("string" != typeof name) return name;
|
|
||||||
var plugin, url, parts, prefix, result, prefixNormalized, cacheKey = name + " & " + (relName || "") + " & " + !!applyMap;
|
|
||||||
return parts = splitPrefix(name), prefix = parts[0], name = parts[1], !prefix && cacheKey in mapCache ? mapCache[cacheKey] : (prefix && (prefix = normalize(prefix, relName, applyMap), plugin = prefix in defined && defined[prefix]), prefix ? plugin && plugin.normalize ? (name = plugin.normalize(name, makeNormalize(relName)), prefixNormalized = !0) : name = -1 === name.indexOf("!") ? normalize(name, relName, applyMap) : name : (name = normalize(name, relName, applyMap), parts = splitPrefix(name), prefix = parts[0], name = parts[1], url = req.nameToUrl(name)), result = {
|
|
||||||
id: prefix ? prefix + "!" + name : name,
|
|
||||||
n: name,
|
|
||||||
pr: prefix,
|
|
||||||
url: url,
|
|
||||||
prn: prefix && prefixNormalized
|
|
||||||
}, prefix || (mapCache[cacheKey] = result), result)
|
|
||||||
}, handlers = {
|
|
||||||
require: function(name) {
|
|
||||||
return makeRequire(name)
|
|
||||||
},
|
|
||||||
exports: function(name) {
|
|
||||||
var e = defined[name];
|
|
||||||
return void 0 !== e ? e : defined[name] = {}
|
|
||||||
},
|
|
||||||
module: function(name) {
|
|
||||||
return {
|
|
||||||
id: name,
|
|
||||||
uri: "",
|
|
||||||
exports: handlers.exports(name),
|
|
||||||
config: function() {
|
|
||||||
return getOwn(config.config, name) || {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, main = function(name, deps, factory, errback, relName) {
|
|
||||||
if (name) {
|
|
||||||
if (name in calledDefine) return;
|
|
||||||
calledDefine[name] = !0
|
|
||||||
}
|
|
||||||
var d = getDefer(name);
|
|
||||||
return deps && !Array.isArray(deps) && (factory = deps, deps = []), deps = deps ? slice.call(deps, 0) : null, errback || (hasProp(config, "defaultErrback") ? config.defaultErrback && (errback = config.defaultErrback) : errback = delayedError), errback && d.promise.catch(errback), relName = relName || name, "function" == typeof factory ? (!deps.length && factory.length && (factory.toString().replace(commentRegExp, commentReplace).replace(cjsRequireRegExp, function(match, dep) {
|
|
||||||
deps.push(dep)
|
|
||||||
}), deps = (1 === factory.length ? ["require"] : ["require", "exports", "module"]).concat(deps)), d.factory = factory, d.deps = deps, d.depending = !0, deps.forEach(function(depName, i) {
|
|
||||||
var depMap;
|
|
||||||
deps[i] = depMap = makeMap(depName, relName, !0), depName = depMap.id, "require" === depName ? d.values[i] = handlers.require(name) : "exports" === depName ? (d.values[i] = handlers.exports(name), d.usingExports = !0) : "module" === depName ? d.values[i] = d.cjsModule = handlers.module(name) : void 0 === depName ? d.values[i] = void 0 : waitForDep(depMap, relName, d, i)
|
|
||||||
}), d.depending = !1, d.depCount === d.depMax && defineModule(d)) : name && resolve(name, d, factory), startTime = (new Date).getTime(), name || check(d), d.promise
|
|
||||||
}, req = makeRequire(null, !0), req.config = function(cfg) {
|
|
||||||
if (cfg.context && cfg.context !== contextName) {
|
|
||||||
var existingContext = getOwn(contexts, cfg.context);
|
|
||||||
return existingContext ? existingContext.req.config(cfg) : newContext(cfg.context).config(cfg)
|
|
||||||
}
|
|
||||||
if (mapCache = obj(), cfg.baseUrl && "/" !== cfg.baseUrl.charAt(cfg.baseUrl.length - 1) && (cfg.baseUrl += "/"), "string" == typeof cfg.urlArgs) {
|
|
||||||
var urlArgs = cfg.urlArgs;
|
|
||||||
cfg.urlArgs = function(id, url) {
|
|
||||||
return (-1 === url.indexOf("?") ? "?" : "&") + urlArgs
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var shim = config.shim,
|
|
||||||
objs = {
|
|
||||||
paths: !0,
|
|
||||||
bundles: !0,
|
|
||||||
config: !0,
|
|
||||||
map: !0
|
|
||||||
};
|
|
||||||
return eachProp(cfg, function(value, prop) {
|
|
||||||
objs[prop] ? (config[prop] || (config[prop] = {}), mixin(config[prop], value, !0, !0)) : config[prop] = value
|
|
||||||
}), cfg.bundles && eachProp(cfg.bundles, function(value, prop) {
|
|
||||||
value.forEach(function(v) {
|
|
||||||
v !== prop && (bundlesMap[v] = prop)
|
|
||||||
})
|
|
||||||
}), cfg.shim && (eachProp(cfg.shim, function(value, id) {
|
|
||||||
Array.isArray(value) && (value = {
|
|
||||||
deps: value
|
|
||||||
}), !value.exports && !value.init || value.exportsFn || (value.exportsFn = makeShimExports(value)), shim[id] = value
|
|
||||||
}), config.shim = shim), cfg.packages && cfg.packages.forEach(function(pkgObj) {
|
|
||||||
var location, name;
|
|
||||||
pkgObj = "string" == typeof pkgObj ? {
|
|
||||||
name: pkgObj
|
|
||||||
} : pkgObj, name = pkgObj.name, location = pkgObj.location, location && (config.paths[name] = pkgObj.location), config.pkgs[name] = pkgObj.name + "/" + (pkgObj.main || "main").replace(currDirRegExp, "").replace(jsSuffixRegExp, "")
|
|
||||||
}), (cfg.deps || cfg.callback) && req(cfg.deps, cfg.callback), req
|
|
||||||
}, req.onError = function(err) {
|
|
||||||
throw err
|
|
||||||
}, context = {
|
|
||||||
id: contextName,
|
|
||||||
defined: defined,
|
|
||||||
waiting: waiting,
|
|
||||||
config: config,
|
|
||||||
deferreds: deferreds,
|
|
||||||
req: req,
|
|
||||||
execCb: function(name, callback, args, exports) {
|
|
||||||
return callback.apply(exports, args)
|
|
||||||
}
|
|
||||||
}, contexts[contextName] = context, req
|
|
||||||
}
|
|
||||||
if (!Promise) throw new Error("No Promise implementation available");
|
|
||||||
var topReq, dataMain, src, subPath, bootstrapConfig = requirejs || require,
|
|
||||||
hasOwn = Object.prototype.hasOwnProperty,
|
|
||||||
contexts = {},
|
|
||||||
queue = [],
|
|
||||||
currDirRegExp = /^\.\//,
|
|
||||||
urlRegExp = /^\/|\:|\?|\.js$/,
|
|
||||||
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm,
|
|
||||||
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
|
|
||||||
jsSuffixRegExp = /\.js$/,
|
|
||||||
slice = Array.prototype.slice;
|
|
||||||
if ("function" != typeof requirejs) {
|
|
||||||
var asap = Promise.resolve(void 0);
|
|
||||||
requirejs = topReq = newContext("_"), "function" != typeof require && (require = topReq), topReq.exec = function(text) {
|
|
||||||
return eval(text)
|
|
||||||
}, topReq.contexts = contexts, define = function() {
|
|
||||||
queue.push(slice.call(arguments, 0))
|
|
||||||
}, define.amd = {
|
|
||||||
jQuery: !0
|
|
||||||
}, bootstrapConfig && topReq.config(bootstrapConfig), topReq.isBrowser && !contexts._.config.skipDataMain && (dataMain = document.querySelectorAll("script[data-main]")[0], (dataMain = dataMain && dataMain.getAttribute("data-main")) && (dataMain = dataMain.replace(jsSuffixRegExp, ""), bootstrapConfig && bootstrapConfig.baseUrl || -1 !== dataMain.indexOf("!") || (src = dataMain.split("/"), dataMain = src.pop(), subPath = src.length ? src.join("/") + "/" : "./", topReq.config({
|
|
||||||
baseUrl: subPath
|
|
||||||
})), topReq([dataMain])))
|
|
||||||
}
|
|
||||||
}(this, "undefined" != typeof Promise ? Promise : void 0);
|
|
607
src/bower_components/requirejs/require.js
vendored
607
src/bower_components/requirejs/require.js
vendored
|
@ -1,607 +0,0 @@
|
||||||
var requirejs, require, define;
|
|
||||||
! function(global, setTimeout) {
|
|
||||||
function commentReplace(match, singlePrefix) {
|
|
||||||
return singlePrefix || ""
|
|
||||||
}
|
|
||||||
|
|
||||||
function isFunction(it) {
|
|
||||||
return "[object Function]" === ostring.call(it)
|
|
||||||
}
|
|
||||||
|
|
||||||
function isArray(it) {
|
|
||||||
return "[object Array]" === ostring.call(it)
|
|
||||||
}
|
|
||||||
|
|
||||||
function each(ary, func) {
|
|
||||||
if (ary) {
|
|
||||||
var i;
|
|
||||||
for (i = 0; i < ary.length && (!ary[i] || !func(ary[i], i, ary)); i += 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function eachReverse(ary, func) {
|
|
||||||
if (ary) {
|
|
||||||
var i;
|
|
||||||
for (i = ary.length - 1; i > -1 && (!ary[i] || !func(ary[i], i, ary)); i -= 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function hasProp(obj, prop) {
|
|
||||||
return hasOwn.call(obj, prop)
|
|
||||||
}
|
|
||||||
|
|
||||||
function getOwn(obj, prop) {
|
|
||||||
return hasProp(obj, prop) && obj[prop]
|
|
||||||
}
|
|
||||||
|
|
||||||
function eachProp(obj, func) {
|
|
||||||
var prop;
|
|
||||||
for (prop in obj)
|
|
||||||
if (hasProp(obj, prop) && func(obj[prop], prop)) break
|
|
||||||
}
|
|
||||||
|
|
||||||
function mixin(target, source, force, deepStringMixin) {
|
|
||||||
return source && eachProp(source, function(value, prop) {
|
|
||||||
!force && hasProp(target, prop) || (!deepStringMixin || "object" != typeof value || !value || isArray(value) || isFunction(value) || value instanceof RegExp ? target[prop] = value : (target[prop] || (target[prop] = {}), mixin(target[prop], value, force, deepStringMixin)))
|
|
||||||
}), target
|
|
||||||
}
|
|
||||||
|
|
||||||
function bind(obj, fn) {
|
|
||||||
return function() {
|
|
||||||
return fn.apply(obj, arguments)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function scripts() {
|
|
||||||
return document.getElementsByTagName("script")
|
|
||||||
}
|
|
||||||
|
|
||||||
function defaultOnError(err) {
|
|
||||||
throw err
|
|
||||||
}
|
|
||||||
|
|
||||||
function getGlobal(value) {
|
|
||||||
if (!value) return value;
|
|
||||||
var g = global;
|
|
||||||
return each(value.split("."), function(part) {
|
|
||||||
g = g[part]
|
|
||||||
}), g
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeError(id, msg, err, requireModules) {
|
|
||||||
var e = new Error(msg + "\nhttp://requirejs.org/docs/errors.html#" + id);
|
|
||||||
return e.requireType = id, e.requireModules = requireModules, err && (e.originalError = err), e
|
|
||||||
}
|
|
||||||
|
|
||||||
function newContext(contextName) {
|
|
||||||
function trimDots(ary) {
|
|
||||||
var i, part;
|
|
||||||
for (i = 0; i < ary.length; i++)
|
|
||||||
if ("." === (part = ary[i])) ary.splice(i, 1), i -= 1;
|
|
||||||
else if (".." === part) {
|
|
||||||
if (0 === i || 1 === i && ".." === ary[2] || ".." === ary[i - 1]) continue;
|
|
||||||
i > 0 && (ary.splice(i - 1, 2), i -= 2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalize(name, baseName, applyMap) {
|
|
||||||
var mapValue, nameParts, i, j, nameSegment, lastIndex, foundMap, foundI, foundStarMap, starI, normalizedBaseParts, baseParts = baseName && baseName.split("/"),
|
|
||||||
map = config.map,
|
|
||||||
starMap = map && map["*"];
|
|
||||||
if (name && (name = name.split("/"), lastIndex = name.length - 1, config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex]) && (name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, "")), "." === name[0].charAt(0) && baseParts && (normalizedBaseParts = baseParts.slice(0, baseParts.length - 1), name = normalizedBaseParts.concat(name)), trimDots(name), name = name.join("/")), applyMap && map && (baseParts || starMap)) {
|
|
||||||
nameParts = name.split("/");
|
|
||||||
outerLoop: for (i = nameParts.length; i > 0; i -= 1) {
|
|
||||||
if (nameSegment = nameParts.slice(0, i).join("/"), baseParts)
|
|
||||||
for (j = baseParts.length; j > 0; j -= 1)
|
|
||||||
if ((mapValue = getOwn(map, baseParts.slice(0, j).join("/"))) && (mapValue = getOwn(mapValue, nameSegment))) {
|
|
||||||
foundMap = mapValue, foundI = i;
|
|
||||||
break outerLoop
|
|
||||||
}! foundStarMap && starMap && getOwn(starMap, nameSegment) && (foundStarMap = getOwn(starMap, nameSegment), starI = i)
|
|
||||||
}!foundMap && foundStarMap && (foundMap = foundStarMap, foundI = starI), foundMap && (nameParts.splice(0, foundI, foundMap), name = nameParts.join("/"))
|
|
||||||
}
|
|
||||||
return getOwn(config.pkgs, name) || name
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeScript(name) {
|
|
||||||
isBrowser && each(scripts(), function(scriptNode) {
|
|
||||||
if (scriptNode.getAttribute("data-requiremodule") === name && scriptNode.getAttribute("data-requirecontext") === context.contextName) return scriptNode.parentNode.removeChild(scriptNode), !0
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
function hasPathFallback(id) {
|
|
||||||
var pathConfig = getOwn(config.paths, id);
|
|
||||||
if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) return pathConfig.shift(), context.require.undef(id), context.makeRequire(null, {
|
|
||||||
skipMap: !0
|
|
||||||
})([id]), !0
|
|
||||||
}
|
|
||||||
|
|
||||||
function splitPrefix(name) {
|
|
||||||
var prefix, index = name ? name.indexOf("!") : -1;
|
|
||||||
return index > -1 && (prefix = name.substring(0, index), name = name.substring(index + 1, name.length)), [prefix, name]
|
|
||||||
}
|
|
||||||
|
|
||||||
function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) {
|
|
||||||
var url, pluginModule, suffix, nameParts, prefix = null,
|
|
||||||
parentName = parentModuleMap ? parentModuleMap.name : null,
|
|
||||||
originalName = name,
|
|
||||||
isDefine = !0,
|
|
||||||
normalizedName = "";
|
|
||||||
return name || (isDefine = !1, name = "_@r" + (requireCounter += 1)), nameParts = splitPrefix(name), prefix = nameParts[0], name = nameParts[1], prefix && (prefix = normalize(prefix, parentName, applyMap), pluginModule = getOwn(defined, prefix)), name && (prefix ? normalizedName = isNormalized ? name : pluginModule && pluginModule.normalize ? pluginModule.normalize(name, function(name) {
|
|
||||||
return normalize(name, parentName, applyMap)
|
|
||||||
}) : -1 === name.indexOf("!") ? normalize(name, parentName, applyMap) : name : (normalizedName = normalize(name, parentName, applyMap), nameParts = splitPrefix(normalizedName), prefix = nameParts[0], normalizedName = nameParts[1], isNormalized = !0, url = context.nameToUrl(normalizedName))), suffix = !prefix || pluginModule || isNormalized ? "" : "_unnormalized" + (unnormalizedCounter += 1), {
|
|
||||||
prefix: prefix,
|
|
||||||
name: normalizedName,
|
|
||||||
parentMap: parentModuleMap,
|
|
||||||
unnormalized: !!suffix,
|
|
||||||
url: url,
|
|
||||||
originalName: originalName,
|
|
||||||
isDefine: isDefine,
|
|
||||||
id: (prefix ? prefix + "!" + normalizedName : normalizedName) + suffix
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function getModule(depMap) {
|
|
||||||
var id = depMap.id,
|
|
||||||
mod = getOwn(registry, id);
|
|
||||||
return mod || (mod = registry[id] = new context.Module(depMap)), mod
|
|
||||||
}
|
|
||||||
|
|
||||||
function on(depMap, name, fn) {
|
|
||||||
var id = depMap.id,
|
|
||||||
mod = getOwn(registry, id);
|
|
||||||
!hasProp(defined, id) || mod && !mod.defineEmitComplete ? (mod = getModule(depMap), mod.error && "error" === name ? fn(mod.error) : mod.on(name, fn)) : "defined" === name && fn(defined[id])
|
|
||||||
}
|
|
||||||
|
|
||||||
function onError(err, errback) {
|
|
||||||
var ids = err.requireModules,
|
|
||||||
notified = !1;
|
|
||||||
errback ? errback(err) : (each(ids, function(id) {
|
|
||||||
var mod = getOwn(registry, id);
|
|
||||||
mod && (mod.error = err, mod.events.error && (notified = !0, mod.emit("error", err)))
|
|
||||||
}), notified || req.onError(err))
|
|
||||||
}
|
|
||||||
|
|
||||||
function takeGlobalQueue() {
|
|
||||||
globalDefQueue.length && (each(globalDefQueue, function(queueItem) {
|
|
||||||
var id = queueItem[0];
|
|
||||||
"string" == typeof id && (context.defQueueMap[id] = !0), defQueue.push(queueItem)
|
|
||||||
}), globalDefQueue = [])
|
|
||||||
}
|
|
||||||
|
|
||||||
function cleanRegistry(id) {
|
|
||||||
delete registry[id], delete enabledRegistry[id]
|
|
||||||
}
|
|
||||||
|
|
||||||
function breakCycle(mod, traced, processed) {
|
|
||||||
var id = mod.map.id;
|
|
||||||
mod.error ? mod.emit("error", mod.error) : (traced[id] = !0, each(mod.depMaps, function(depMap, i) {
|
|
||||||
var depId = depMap.id,
|
|
||||||
dep = getOwn(registry, depId);
|
|
||||||
!dep || mod.depMatched[i] || processed[depId] || (getOwn(traced, depId) ? (mod.defineDep(i, defined[depId]), mod.check()) : breakCycle(dep, traced, processed))
|
|
||||||
}), processed[id] = !0)
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkLoaded() {
|
|
||||||
var err, usingPathFallback, waitInterval = 1e3 * config.waitSeconds,
|
|
||||||
expired = waitInterval && context.startTime + waitInterval < (new Date).getTime(),
|
|
||||||
noLoads = [],
|
|
||||||
reqCalls = [],
|
|
||||||
stillLoading = !1,
|
|
||||||
needCycleCheck = !0;
|
|
||||||
if (!inCheckLoaded) {
|
|
||||||
if (inCheckLoaded = !0, eachProp(enabledRegistry, function(mod) {
|
|
||||||
var map = mod.map,
|
|
||||||
modId = map.id;
|
|
||||||
if (mod.enabled && (map.isDefine || reqCalls.push(mod), !mod.error))
|
|
||||||
if (!mod.inited && expired) hasPathFallback(modId) ? (usingPathFallback = !0, stillLoading = !0) : (noLoads.push(modId), removeScript(modId));
|
|
||||||
else if (!mod.inited && mod.fetched && map.isDefine && (stillLoading = !0, !map.prefix)) return needCycleCheck = !1
|
|
||||||
}), expired && noLoads.length) return err = makeError("timeout", "Load timeout for modules: " + noLoads, null, noLoads), err.contextName = context.contextName, onError(err);
|
|
||||||
needCycleCheck && each(reqCalls, function(mod) {
|
|
||||||
breakCycle(mod, {}, {})
|
|
||||||
}), expired && !usingPathFallback || !stillLoading || !isBrowser && !isWebWorker || checkLoadedTimeoutId || (checkLoadedTimeoutId = setTimeout(function() {
|
|
||||||
checkLoadedTimeoutId = 0, checkLoaded()
|
|
||||||
}, 50)), inCheckLoaded = !1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function callGetModule(args) {
|
|
||||||
hasProp(defined, args[0]) || getModule(makeModuleMap(args[0], null, !0)).init(args[1], args[2])
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeListener(node, func, name, ieName) {
|
|
||||||
node.detachEvent && !isOpera ? ieName && node.detachEvent(ieName, func) : node.removeEventListener(name, func, !1)
|
|
||||||
}
|
|
||||||
|
|
||||||
function getScriptData(evt) {
|
|
||||||
var node = evt.currentTarget || evt.srcElement;
|
|
||||||
return removeListener(node, context.onScriptLoad, "load", "onreadystatechange"), removeListener(node, context.onScriptError, "error"), {
|
|
||||||
node: node,
|
|
||||||
id: node && node.getAttribute("data-requiremodule")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function intakeDefines() {
|
|
||||||
var args;
|
|
||||||
for (takeGlobalQueue(); defQueue.length;) {
|
|
||||||
if (args = defQueue.shift(), null === args[0]) return onError(makeError("mismatch", "Mismatched anonymous define() module: " + args[args.length - 1]));
|
|
||||||
callGetModule(args)
|
|
||||||
}
|
|
||||||
context.defQueueMap = {}
|
|
||||||
}
|
|
||||||
var inCheckLoaded, Module, context, handlers, checkLoadedTimeoutId, config = {
|
|
||||||
waitSeconds: 7,
|
|
||||||
baseUrl: "./",
|
|
||||||
paths: {},
|
|
||||||
bundles: {},
|
|
||||||
pkgs: {},
|
|
||||||
shim: {},
|
|
||||||
config: {}
|
|
||||||
},
|
|
||||||
registry = {},
|
|
||||||
enabledRegistry = {},
|
|
||||||
undefEvents = {},
|
|
||||||
defQueue = [],
|
|
||||||
defined = {},
|
|
||||||
urlFetched = {},
|
|
||||||
bundlesMap = {},
|
|
||||||
requireCounter = 1,
|
|
||||||
unnormalizedCounter = 1;
|
|
||||||
return handlers = {
|
|
||||||
require: function(mod) {
|
|
||||||
return mod.require ? mod.require : mod.require = context.makeRequire(mod.map)
|
|
||||||
},
|
|
||||||
exports: function(mod) {
|
|
||||||
if (mod.usingExports = !0, mod.map.isDefine) return mod.exports ? defined[mod.map.id] = mod.exports : mod.exports = defined[mod.map.id] = {}
|
|
||||||
},
|
|
||||||
module: function(mod) {
|
|
||||||
return mod.module ? mod.module : mod.module = {
|
|
||||||
id: mod.map.id,
|
|
||||||
uri: mod.map.url,
|
|
||||||
config: function() {
|
|
||||||
return getOwn(config.config, mod.map.id) || {}
|
|
||||||
},
|
|
||||||
exports: mod.exports || (mod.exports = {})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, Module = function(map) {
|
|
||||||
this.events = getOwn(undefEvents, map.id) || {}, this.map = map, this.shim = getOwn(config.shim, map.id), this.depExports = [], this.depMaps = [], this.depMatched = [], this.pluginMaps = {}, this.depCount = 0
|
|
||||||
}, Module.prototype = {
|
|
||||||
init: function(depMaps, factory, errback, options) {
|
|
||||||
options = options || {}, this.inited || (this.factory = factory, errback ? this.on("error", errback) : this.events.error && (errback = bind(this, function(err) {
|
|
||||||
this.emit("error", err)
|
|
||||||
})), this.depMaps = depMaps && depMaps.slice(0), this.errback = errback, this.inited = !0, this.ignore = options.ignore, options.enabled || this.enabled ? this.enable() : this.check())
|
|
||||||
},
|
|
||||||
defineDep: function(i, depExports) {
|
|
||||||
this.depMatched[i] || (this.depMatched[i] = !0, this.depCount -= 1, this.depExports[i] = depExports)
|
|
||||||
},
|
|
||||||
fetch: function() {
|
|
||||||
if (!this.fetched) {
|
|
||||||
this.fetched = !0, context.startTime = (new Date).getTime();
|
|
||||||
var map = this.map;
|
|
||||||
if (!this.shim) return map.prefix ? this.callPlugin() : this.load();
|
|
||||||
context.makeRequire(this.map, {
|
|
||||||
enableBuildCallback: !0
|
|
||||||
})(this.shim.deps || [], bind(this, function() {
|
|
||||||
return map.prefix ? this.callPlugin() : this.load()
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
load: function() {
|
|
||||||
var url = this.map.url;
|
|
||||||
urlFetched[url] || (urlFetched[url] = !0, context.load(this.map.id, url))
|
|
||||||
},
|
|
||||||
check: function() {
|
|
||||||
if (this.enabled && !this.enabling) {
|
|
||||||
var err, cjsModule, id = this.map.id,
|
|
||||||
depExports = this.depExports,
|
|
||||||
exports = this.exports,
|
|
||||||
factory = this.factory;
|
|
||||||
if (this.inited) {
|
|
||||||
if (this.error) this.emit("error", this.error);
|
|
||||||
else if (!this.defining) {
|
|
||||||
if (this.defining = !0, this.depCount < 1 && !this.defined) {
|
|
||||||
if (isFunction(factory)) {
|
|
||||||
if (this.events.error && this.map.isDefine || req.onError !== defaultOnError) try {
|
|
||||||
exports = context.execCb(id, factory, depExports, exports)
|
|
||||||
} catch (e) {
|
|
||||||
err = e
|
|
||||||
} else exports = context.execCb(id, factory, depExports, exports);
|
|
||||||
if (this.map.isDefine && void 0 === exports && (cjsModule = this.module, cjsModule ? exports = cjsModule.exports : this.usingExports && (exports = this.exports)), err) return err.requireMap = this.map, err.requireModules = this.map.isDefine ? [this.map.id] : null, err.requireType = this.map.isDefine ? "define" : "require", onError(this.error = err)
|
|
||||||
} else exports = factory;
|
|
||||||
if (this.exports = exports, this.map.isDefine && !this.ignore && (defined[id] = exports, req.onResourceLoad)) {
|
|
||||||
var resLoadMaps = [];
|
|
||||||
each(this.depMaps, function(depMap) {
|
|
||||||
resLoadMaps.push(depMap.normalizedMap || depMap)
|
|
||||||
}), req.onResourceLoad(context, this.map, resLoadMaps)
|
|
||||||
}
|
|
||||||
cleanRegistry(id), this.defined = !0
|
|
||||||
}
|
|
||||||
this.defining = !1, this.defined && !this.defineEmitted && (this.defineEmitted = !0, this.emit("defined", this.exports), this.defineEmitComplete = !0)
|
|
||||||
}
|
|
||||||
} else hasProp(context.defQueueMap, id) || this.fetch()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
callPlugin: function() {
|
|
||||||
var map = this.map,
|
|
||||||
id = map.id,
|
|
||||||
pluginMap = makeModuleMap(map.prefix);
|
|
||||||
this.depMaps.push(pluginMap), on(pluginMap, "defined", bind(this, function(plugin) {
|
|
||||||
var load, normalizedMap, normalizedMod, bundleId = getOwn(bundlesMap, this.map.id),
|
|
||||||
name = this.map.name,
|
|
||||||
parentName = this.map.parentMap ? this.map.parentMap.name : null,
|
|
||||||
localRequire = context.makeRequire(map.parentMap, {
|
|
||||||
enableBuildCallback: !0
|
|
||||||
});
|
|
||||||
return this.map.unnormalized ? (plugin.normalize && (name = plugin.normalize(name, function(name) {
|
|
||||||
return normalize(name, parentName, !0)
|
|
||||||
}) || ""), normalizedMap = makeModuleMap(map.prefix + "!" + name, this.map.parentMap, !0), on(normalizedMap, "defined", bind(this, function(value) {
|
|
||||||
this.map.normalizedMap = normalizedMap, this.init([], function() {
|
|
||||||
return value
|
|
||||||
}, null, {
|
|
||||||
enabled: !0,
|
|
||||||
ignore: !0
|
|
||||||
})
|
|
||||||
})), void((normalizedMod = getOwn(registry, normalizedMap.id)) && (this.depMaps.push(normalizedMap), this.events.error && normalizedMod.on("error", bind(this, function(err) {
|
|
||||||
this.emit("error", err)
|
|
||||||
})), normalizedMod.enable()))) : bundleId ? (this.map.url = context.nameToUrl(bundleId), void this.load()) : (load = bind(this, function(value) {
|
|
||||||
this.init([], function() {
|
|
||||||
return value
|
|
||||||
}, null, {
|
|
||||||
enabled: !0
|
|
||||||
})
|
|
||||||
}), load.error = bind(this, function(err) {
|
|
||||||
this.inited = !0, this.error = err, err.requireModules = [id], eachProp(registry, function(mod) {
|
|
||||||
0 === mod.map.id.indexOf(id + "_unnormalized") && cleanRegistry(mod.map.id)
|
|
||||||
}), onError(err)
|
|
||||||
}), load.fromText = bind(this, function(text, textAlt) {
|
|
||||||
var moduleName = map.name,
|
|
||||||
moduleMap = makeModuleMap(moduleName),
|
|
||||||
hasInteractive = useInteractive;
|
|
||||||
textAlt && (text = textAlt), hasInteractive && (useInteractive = !1), getModule(moduleMap), hasProp(config.config, id) && (config.config[moduleName] = config.config[id]);
|
|
||||||
try {
|
|
||||||
req.exec(text)
|
|
||||||
} catch (e) {
|
|
||||||
return onError(makeError("fromtexteval", "fromText eval for " + id + " failed: " + e, e, [id]))
|
|
||||||
}
|
|
||||||
hasInteractive && (useInteractive = !0), this.depMaps.push(moduleMap), context.completeLoad(moduleName), localRequire([moduleName], load)
|
|
||||||
}), void plugin.load(map.name, localRequire, load, config))
|
|
||||||
})), context.enable(pluginMap, this), this.pluginMaps[pluginMap.id] = pluginMap
|
|
||||||
},
|
|
||||||
enable: function() {
|
|
||||||
enabledRegistry[this.map.id] = this, this.enabled = !0, this.enabling = !0, each(this.depMaps, bind(this, function(depMap, i) {
|
|
||||||
var id, mod, handler;
|
|
||||||
if ("string" == typeof depMap) {
|
|
||||||
if (depMap = makeModuleMap(depMap, this.map.isDefine ? this.map : this.map.parentMap, !1, !this.skipMap), this.depMaps[i] = depMap, handler = getOwn(handlers, depMap.id)) return void(this.depExports[i] = handler(this));
|
|
||||||
this.depCount += 1, on(depMap, "defined", bind(this, function(depExports) {
|
|
||||||
this.undefed || (this.defineDep(i, depExports), this.check())
|
|
||||||
})), this.errback ? on(depMap, "error", bind(this, this.errback)) : this.events.error && on(depMap, "error", bind(this, function(err) {
|
|
||||||
this.emit("error", err)
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
id = depMap.id, mod = registry[id], hasProp(handlers, id) || !mod || mod.enabled || context.enable(depMap, this)
|
|
||||||
})), eachProp(this.pluginMaps, bind(this, function(pluginMap) {
|
|
||||||
var mod = getOwn(registry, pluginMap.id);
|
|
||||||
mod && !mod.enabled && context.enable(pluginMap, this)
|
|
||||||
})), this.enabling = !1, this.check()
|
|
||||||
},
|
|
||||||
on: function(name, cb) {
|
|
||||||
var cbs = this.events[name];
|
|
||||||
cbs || (cbs = this.events[name] = []), cbs.push(cb)
|
|
||||||
},
|
|
||||||
emit: function(name, evt) {
|
|
||||||
each(this.events[name], function(cb) {
|
|
||||||
cb(evt)
|
|
||||||
}), "error" === name && delete this.events[name]
|
|
||||||
}
|
|
||||||
}, context = {
|
|
||||||
config: config,
|
|
||||||
contextName: contextName,
|
|
||||||
registry: registry,
|
|
||||||
defined: defined,
|
|
||||||
urlFetched: urlFetched,
|
|
||||||
defQueue: defQueue,
|
|
||||||
defQueueMap: {},
|
|
||||||
Module: Module,
|
|
||||||
makeModuleMap: makeModuleMap,
|
|
||||||
nextTick: req.nextTick,
|
|
||||||
onError: onError,
|
|
||||||
configure: function(cfg) {
|
|
||||||
if (cfg.baseUrl && "/" !== cfg.baseUrl.charAt(cfg.baseUrl.length - 1) && (cfg.baseUrl += "/"), "string" == typeof cfg.urlArgs) {
|
|
||||||
var urlArgs = cfg.urlArgs;
|
|
||||||
cfg.urlArgs = function(id, url) {
|
|
||||||
return (-1 === url.indexOf("?") ? "?" : "&") + urlArgs
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var shim = config.shim,
|
|
||||||
objs = {
|
|
||||||
paths: !0,
|
|
||||||
bundles: !0,
|
|
||||||
config: !0,
|
|
||||||
map: !0
|
|
||||||
};
|
|
||||||
eachProp(cfg, function(value, prop) {
|
|
||||||
objs[prop] ? (config[prop] || (config[prop] = {}), mixin(config[prop], value, !0, !0)) : config[prop] = value
|
|
||||||
}), cfg.bundles && eachProp(cfg.bundles, function(value, prop) {
|
|
||||||
each(value, function(v) {
|
|
||||||
v !== prop && (bundlesMap[v] = prop)
|
|
||||||
})
|
|
||||||
}), cfg.shim && (eachProp(cfg.shim, function(value, id) {
|
|
||||||
isArray(value) && (value = {
|
|
||||||
deps: value
|
|
||||||
}), !value.exports && !value.init || value.exportsFn || (value.exportsFn = context.makeShimExports(value)), shim[id] = value
|
|
||||||
}), config.shim = shim), cfg.packages && each(cfg.packages, function(pkgObj) {
|
|
||||||
var location, name;
|
|
||||||
pkgObj = "string" == typeof pkgObj ? {
|
|
||||||
name: pkgObj
|
|
||||||
} : pkgObj, name = pkgObj.name, location = pkgObj.location, location && (config.paths[name] = pkgObj.location), config.pkgs[name] = pkgObj.name + "/" + (pkgObj.main || "main").replace(currDirRegExp, "").replace(jsSuffixRegExp, "")
|
|
||||||
}), eachProp(registry, function(mod, id) {
|
|
||||||
mod.inited || mod.map.unnormalized || (mod.map = makeModuleMap(id, null, !0))
|
|
||||||
}), (cfg.deps || cfg.callback) && context.require(cfg.deps || [], cfg.callback)
|
|
||||||
},
|
|
||||||
makeShimExports: function(value) {
|
|
||||||
function fn() {
|
|
||||||
var ret;
|
|
||||||
return value.init && (ret = value.init.apply(global, arguments)), ret || value.exports && getGlobal(value.exports)
|
|
||||||
}
|
|
||||||
return fn
|
|
||||||
},
|
|
||||||
makeRequire: function(relMap, options) {
|
|
||||||
function localRequire(deps, callback, errback) {
|
|
||||||
var id, map, requireMod;
|
|
||||||
return options.enableBuildCallback && callback && isFunction(callback) && (callback.__requireJsBuild = !0), "string" == typeof deps ? isFunction(callback) ? onError(makeError("requireargs", "Invalid require call"), errback) : relMap && hasProp(handlers, deps) ? handlers[deps](registry[relMap.id]) : req.get ? req.get(context, deps, relMap, localRequire) : (map = makeModuleMap(deps, relMap, !1, !0), id = map.id, hasProp(defined, id) ? defined[id] : onError(makeError("notloaded", 'Module name "' + id + '" has not been loaded yet for context: ' + contextName + (relMap ? "" : ". Use require([])")))) : (intakeDefines(), context.nextTick(function() {
|
|
||||||
intakeDefines(), requireMod = getModule(makeModuleMap(null, relMap)), requireMod.skipMap = options.skipMap, requireMod.init(deps, callback, errback, {
|
|
||||||
enabled: !0
|
|
||||||
}), checkLoaded()
|
|
||||||
}), localRequire)
|
|
||||||
}
|
|
||||||
return options = options || {}, mixin(localRequire, {
|
|
||||||
isBrowser: isBrowser,
|
|
||||||
toUrl: function(moduleNamePlusExt) {
|
|
||||||
var ext, index = moduleNamePlusExt.lastIndexOf("."),
|
|
||||||
segment = moduleNamePlusExt.split("/")[0],
|
|
||||||
isRelative = "." === segment || ".." === segment;
|
|
||||||
return -1 !== index && (!isRelative || index > 1) && (ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length), moduleNamePlusExt = moduleNamePlusExt.substring(0, index)), context.nameToUrl(normalize(moduleNamePlusExt, relMap && relMap.id, !0), ext, !0)
|
|
||||||
},
|
|
||||||
defined: function(id) {
|
|
||||||
return hasProp(defined, makeModuleMap(id, relMap, !1, !0).id)
|
|
||||||
},
|
|
||||||
specified: function(id) {
|
|
||||||
return id = makeModuleMap(id, relMap, !1, !0).id, hasProp(defined, id) || hasProp(registry, id)
|
|
||||||
}
|
|
||||||
}), relMap || (localRequire.undef = function(id) {
|
|
||||||
takeGlobalQueue();
|
|
||||||
var map = makeModuleMap(id, relMap, !0),
|
|
||||||
mod = getOwn(registry, id);
|
|
||||||
mod.undefed = !0, removeScript(id), delete defined[id], delete urlFetched[map.url], delete undefEvents[id], eachReverse(defQueue, function(args, i) {
|
|
||||||
args[0] === id && defQueue.splice(i, 1)
|
|
||||||
}), delete context.defQueueMap[id], mod && (mod.events.defined && (undefEvents[id] = mod.events), cleanRegistry(id))
|
|
||||||
}), localRequire
|
|
||||||
},
|
|
||||||
enable: function(depMap) {
|
|
||||||
getOwn(registry, depMap.id) && getModule(depMap).enable()
|
|
||||||
},
|
|
||||||
completeLoad: function(moduleName) {
|
|
||||||
var found, args, mod, shim = getOwn(config.shim, moduleName) || {},
|
|
||||||
shExports = shim.exports;
|
|
||||||
for (takeGlobalQueue(); defQueue.length;) {
|
|
||||||
if (args = defQueue.shift(), null === args[0]) {
|
|
||||||
if (args[0] = moduleName, found) break;
|
|
||||||
found = !0
|
|
||||||
} else args[0] === moduleName && (found = !0);
|
|
||||||
callGetModule(args)
|
|
||||||
}
|
|
||||||
if (context.defQueueMap = {}, mod = getOwn(registry, moduleName), !found && !hasProp(defined, moduleName) && mod && !mod.inited) {
|
|
||||||
if (!(!config.enforceDefine || shExports && getGlobal(shExports))) return hasPathFallback(moduleName) ? void 0 : onError(makeError("nodefine", "No define call for " + moduleName, null, [moduleName]));
|
|
||||||
callGetModule([moduleName, shim.deps || [], shim.exportsFn])
|
|
||||||
}
|
|
||||||
checkLoaded()
|
|
||||||
},
|
|
||||||
nameToUrl: function(moduleName, ext, skipExt) {
|
|
||||||
var paths, syms, i, parentModule, url, parentPath, bundleId, pkgMain = getOwn(config.pkgs, moduleName);
|
|
||||||
if (pkgMain && (moduleName = pkgMain), bundleId = getOwn(bundlesMap, moduleName)) return context.nameToUrl(bundleId, ext, skipExt);
|
|
||||||
if (req.jsExtRegExp.test(moduleName)) url = moduleName + (ext || "");
|
|
||||||
else {
|
|
||||||
for (paths = config.paths, syms = moduleName.split("/"), i = syms.length; i > 0; i -= 1)
|
|
||||||
if (parentModule = syms.slice(0, i).join("/"), parentPath = getOwn(paths, parentModule)) {
|
|
||||||
isArray(parentPath) && (parentPath = parentPath[0]), syms.splice(0, i, parentPath);
|
|
||||||
break
|
|
||||||
} url = syms.join("/"), url += ext || (/^data\:|^blob\:|\?/.test(url) || skipExt ? "" : ".js"), url = ("/" === url.charAt(0) || url.match(/^[\w\+\.\-]+:/) ? "" : config.baseUrl) + url
|
|
||||||
}
|
|
||||||
return config.urlArgs && !/^blob\:/.test(url) ? url + config.urlArgs(moduleName, url) : url
|
|
||||||
},
|
|
||||||
load: function(id, url) {
|
|
||||||
req.load(context, id, url)
|
|
||||||
},
|
|
||||||
execCb: function(name, callback, args, exports) {
|
|
||||||
return callback.apply(exports, args)
|
|
||||||
},
|
|
||||||
onScriptLoad: function(evt) {
|
|
||||||
if ("load" === evt.type || readyRegExp.test((evt.currentTarget || evt.srcElement).readyState)) {
|
|
||||||
interactiveScript = null;
|
|
||||||
var data = getScriptData(evt);
|
|
||||||
context.completeLoad(data.id)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onScriptError: function(evt) {
|
|
||||||
var data = getScriptData(evt);
|
|
||||||
if (!hasPathFallback(data.id)) {
|
|
||||||
var parents = [];
|
|
||||||
return eachProp(registry, function(value, key) {
|
|
||||||
0 !== key.indexOf("_@r") && each(value.depMaps, function(depMap) {
|
|
||||||
if (depMap.id === data.id) return parents.push(key), !0
|
|
||||||
})
|
|
||||||
}), onError(makeError("scripterror", 'Script error for "' + data.id + (parents.length ? '", needed by: ' + parents.join(", ") : '"'), evt, [data.id]))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, context.require = context.makeRequire(), context
|
|
||||||
}
|
|
||||||
|
|
||||||
function getInteractiveScript() {
|
|
||||||
return interactiveScript && "interactive" === interactiveScript.readyState ? interactiveScript : (eachReverse(scripts(), function(script) {
|
|
||||||
if ("interactive" === script.readyState) return interactiveScript = script
|
|
||||||
}), interactiveScript)
|
|
||||||
}
|
|
||||||
var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, version = "2.3.5",
|
|
||||||
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm,
|
|
||||||
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
|
|
||||||
jsSuffixRegExp = /\.js$/,
|
|
||||||
currDirRegExp = /^\.\//,
|
|
||||||
op = Object.prototype,
|
|
||||||
ostring = op.toString,
|
|
||||||
hasOwn = op.hasOwnProperty,
|
|
||||||
isBrowser = !("undefined" == typeof window || "undefined" == typeof navigator || !window.document),
|
|
||||||
isWebWorker = !isBrowser && "undefined" != typeof importScripts,
|
|
||||||
readyRegExp = isBrowser && "PLAYSTATION 3" === navigator.platform ? /^complete$/ : /^(complete|loaded)$/,
|
|
||||||
defContextName = "_",
|
|
||||||
isOpera = "undefined" != typeof opera && "[object Opera]" === opera.toString(),
|
|
||||||
contexts = {},
|
|
||||||
cfg = {},
|
|
||||||
globalDefQueue = [],
|
|
||||||
useInteractive = !1;
|
|
||||||
if (void 0 === define) {
|
|
||||||
if (void 0 !== requirejs) {
|
|
||||||
if (isFunction(requirejs)) return;
|
|
||||||
cfg = requirejs, requirejs = void 0
|
|
||||||
}
|
|
||||||
void 0 === require || isFunction(require) || (cfg = require, require = void 0), req = requirejs = function(deps, callback, errback, optional) {
|
|
||||||
var context, config, contextName = defContextName;
|
|
||||||
return isArray(deps) || "string" == typeof deps || (config = deps, isArray(callback) ? (deps = callback, callback = errback, errback = optional) : deps = []), config && config.context && (contextName = config.context), context = getOwn(contexts, contextName), context || (context = contexts[contextName] = req.s.newContext(contextName)), config && context.configure(config), context.require(deps, callback, errback)
|
|
||||||
}, req.config = function(config) {
|
|
||||||
return req(config)
|
|
||||||
}, req.nextTick = void 0 !== setTimeout ? function(fn) {
|
|
||||||
setTimeout(fn, 4)
|
|
||||||
} : function(fn) {
|
|
||||||
fn()
|
|
||||||
}, require || (require = req), req.version = version, req.jsExtRegExp = /^\/|:|\?|\.js$/, req.isBrowser = isBrowser, s = req.s = {
|
|
||||||
contexts: contexts,
|
|
||||||
newContext: newContext
|
|
||||||
}, req({}), each(["toUrl", "undef", "defined", "specified"], function(prop) {
|
|
||||||
req[prop] = function() {
|
|
||||||
var ctx = contexts[defContextName];
|
|
||||||
return ctx.require[prop].apply(ctx, arguments)
|
|
||||||
}
|
|
||||||
}), isBrowser && (head = s.head = document.getElementsByTagName("head")[0], (baseElement = document.getElementsByTagName("base")[0]) && (head = s.head = baseElement.parentNode)), req.onError = defaultOnError, req.createNode = function(config, moduleName, url) {
|
|
||||||
var node = config.xhtml ? document.createElementNS("http://www.w3.org/1999/xhtml", "html:script") : document.createElement("script");
|
|
||||||
return node.type = config.scriptType || "text/javascript", node.charset = "utf-8", node.async = !0, node
|
|
||||||
}, req.load = function(context, moduleName, url) {
|
|
||||||
var node, config = context && context.config || {};
|
|
||||||
if (isBrowser) return node = req.createNode(config, moduleName, url), node.setAttribute("data-requirecontext", context.contextName), node.setAttribute("data-requiremodule", moduleName), !node.attachEvent || node.attachEvent.toString && node.attachEvent.toString().indexOf("[native code") < 0 || isOpera ? (node.addEventListener("load", context.onScriptLoad, !1), node.addEventListener("error", context.onScriptError, !1)) : (useInteractive = !0, node.attachEvent("onreadystatechange", context.onScriptLoad)), node.src = url, config.onNodeCreated && config.onNodeCreated(node, config, moduleName, url), currentlyAddingScript = node, baseElement ? head.insertBefore(node, baseElement) : head.appendChild(node), currentlyAddingScript = null, node;
|
|
||||||
if (isWebWorker) try {
|
|
||||||
setTimeout(function() {}, 0), importScripts(url), context.completeLoad(moduleName)
|
|
||||||
} catch (e) {
|
|
||||||
context.onError(makeError("importscripts", "importScripts failed for " + moduleName + " at " + url, e, [moduleName]))
|
|
||||||
}
|
|
||||||
}, isBrowser && !cfg.skipDataMain && eachReverse(scripts(), function(script) {
|
|
||||||
if (head || (head = script.parentNode), dataMain = script.getAttribute("data-main")) return mainScript = dataMain, cfg.baseUrl || -1 !== mainScript.indexOf("!") || (src = mainScript.split("/"), mainScript = src.pop(), subPath = src.length ? src.join("/") + "/" : "./", cfg.baseUrl = subPath), mainScript = mainScript.replace(jsSuffixRegExp, ""), req.jsExtRegExp.test(mainScript) && (mainScript = dataMain), cfg.deps = cfg.deps ? cfg.deps.concat(mainScript) : [mainScript], !0
|
|
||||||
}), define = function(name, deps, callback) {
|
|
||||||
var node, context;
|
|
||||||
"string" != typeof name && (callback = deps, deps = name, name = null), isArray(deps) || (callback = deps, deps = null), !deps && isFunction(callback) && (deps = [], callback.length && (callback.toString().replace(commentRegExp, commentReplace).replace(cjsRequireRegExp, function(match, dep) {
|
|
||||||
deps.push(dep)
|
|
||||||
}), deps = (1 === callback.length ? ["require"] : ["require", "exports", "module"]).concat(deps))), useInteractive && (node = currentlyAddingScript || getInteractiveScript()) && (name || (name = node.getAttribute("data-requiremodule")), context = contexts[node.getAttribute("data-requirecontext")]), context ? (context.defQueue.push([name, deps, callback]), context.defQueueMap[name] = !0) : globalDefQueue.push([name, deps, callback])
|
|
||||||
}, define.amd = {
|
|
||||||
jQuery: !0
|
|
||||||
}, req.exec = function(text) {
|
|
||||||
return eval(text)
|
|
||||||
}, req(cfg)
|
|
||||||
}
|
|
||||||
}(this, "undefined" == typeof setTimeout ? void 0 : setTimeout);
|
|
|
@ -20,7 +20,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
injectScriptElement(
|
injectScriptElement(
|
||||||
self.Promise ? "./bower_components/alameda/alameda.js" : "./bower_components/requirejs/require.js",
|
self.Promise ? "./bower_components/alameda.js" : "./bower_components/require.js",
|
||||||
function() {
|
function() {
|
||||||
// onload of require library
|
// onload of require library
|
||||||
injectScriptElement("./scripts/site.js");
|
injectScriptElement("./scripts/site.js");
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
const { CleanWebpackPlugin} = require("clean-webpack-plugin");
|
||||||
const CopyPlugin = require("copy-webpack-plugin");
|
const CopyPlugin = require("copy-webpack-plugin");
|
||||||
|
|
||||||
|
// assets.js
|
||||||
|
const Assets = require('./assets');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
context: path.resolve(__dirname, "src"),
|
context: path.resolve(__dirname, "src"),
|
||||||
entry: "./bundle.js",
|
entry: "./bundle.js",
|
||||||
|
@ -10,9 +14,18 @@ module.exports = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new CleanWebpackPlugin(),
|
||||||
new CopyPlugin([{
|
new CopyPlugin([{
|
||||||
from: "**/*",
|
from: "**/*",
|
||||||
to: "."
|
to: "."
|
||||||
}])
|
}]),
|
||||||
|
new CopyPlugin(
|
||||||
|
Assets.map(asset => {
|
||||||
|
return {
|
||||||
|
from: path.resolve(__dirname, `./node_modules/${asset}`),
|
||||||
|
to: path.resolve(__dirname, './dist/bower_components')
|
||||||
|
};
|
||||||
|
})
|
||||||
|
)
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue