skypager-project
Version:
skypager project framework
109 lines (85 loc) • 2.68 kB
JavaScript
exports.ids = [5];
exports.modules = {
/***/ "./src/project-types/application.js":
/***/ function(module, exports) {
;
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.use = use;
exports.attach = attach;
function use() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var next = arguments[2];
var _context$project = context.project;
var project = _context$project === undefined ? this : _context$project;
attach(project, options, next);
}
function attach(project) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var next = arguments[2];
next();
}
/***/ },
/***/ "./src/project-types/library.js":
/***/ function(module, exports, __webpack_require__) {
;
/* harmony export (immutable) */ exports["use"] = use;
/* harmony export (immutable) */ exports["attach"] = attach;
function use (options = {}, context = {}, next) {
const { project = this } = context
attach(project, options, next)
}
function attach (project, options = {}, next) {
next()
}
/***/ },
/***/ "./src/project-types/portfolio.js":
/***/ function(module, exports) {
;
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.use = use;
exports.attach = attach;
function use() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var next = arguments[2];
var _context$project = context.project;
var project = _context$project === undefined ? this : _context$project;
attach(project, options, next);
}
function attach(project) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var next = arguments[2];
next();
}
/***/ },
/***/ 129:
/***/ function(module, exports, __webpack_require__) {
var map = {
"./application.js": "./src/project-types/application.js",
"./library.js": "./src/project-types/library.js",
"./portfolio.js": "./src/project-types/portfolio.js"
};
function webpackContext(req) {
return __webpack_require__(webpackContextResolve(req));
};
function webpackContextResolve(req) {
var id = map[req];
if(!(id + 1)) // check for number
throw new Error("Cannot find module '" + req + "'.");
return id;
};
webpackContext.keys = function webpackContextKeys() {
return Object.keys(map);
};
webpackContext.resolve = webpackContextResolve;
module.exports = webpackContext;
webpackContext.id = 129;
/***/ }
};;