@andersbakken/fisk 3.6.4 → 3.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{dist → builder}/VM_runtime.js +84 -247
- package/{dist → builder}/fisk-builder.js +6211 -6232
- package/{dist → daemon}/fisk-daemon.js +3 -6
- package/monitor/fisk-monitor.js +22195 -0
- package/package.json +9 -5
- package/{dist → scheduler}/fisk-scheduler.js +111 -274
|
@@ -27,10 +27,6 @@ var net__default = /*#__PURE__*/_interopDefaultLegacy(net);
|
|
|
27
27
|
|
|
28
28
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
29
29
|
|
|
30
|
-
function commonjsRequire(path) {
|
|
31
|
-
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
32
|
-
}
|
|
33
|
-
|
|
34
30
|
var resolve;
|
|
35
31
|
var hasRequiredResolve;
|
|
36
32
|
|
|
@@ -59,7 +55,7 @@ function requireResolve () {
|
|
|
59
55
|
// If we're in webpack, force it to use the original require() method
|
|
60
56
|
var requireFunction = ("function" === typeof __webpack_require__ || "function" === typeof __non_webpack_require__)
|
|
61
57
|
? __non_webpack_require__
|
|
62
|
-
:
|
|
58
|
+
: require;
|
|
63
59
|
|
|
64
60
|
// Resolver
|
|
65
61
|
resolve = function resolve(dirname) {
|
|
@@ -142,7 +138,7 @@ var appRootPath$1 = function(dirname) {
|
|
|
142
138
|
},
|
|
143
139
|
|
|
144
140
|
require: function(pathToModule) {
|
|
145
|
-
return
|
|
141
|
+
return require(publicInterface.resolve(pathToModule));
|
|
146
142
|
},
|
|
147
143
|
|
|
148
144
|
toString: function() {
|
|
@@ -4224,3 +4220,4 @@ client.on('close', () => {
|
|
|
4224
4220
|
}
|
|
4225
4221
|
});
|
|
4226
4222
|
*/
|
|
4223
|
+
//# sourceMappingURL=fisk-daemon.js.map
|