@budibase/server 2.6.19-alpha.45 → 2.6.19-alpha.47
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/builder/assets/{index.49c9e712.css → index.b7e50d51.css} +2 -2
- package/builder/assets/{index.b81657e8.js → index.e6c92ddc.js} +385 -385
- package/builder/index.html +2 -2
- package/dist/automation.js +5 -1
- package/dist/automation.js.map +2 -2
- package/dist/index.js +5 -1
- package/dist/index.js.map +2 -2
- package/dist/query.js +5 -1
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
package/builder/index.html
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
|
|
10
10
|
rel="stylesheet" />
|
|
11
|
-
<script type="module" crossorigin src="/builder/assets/index.
|
|
12
|
-
<link rel="stylesheet" href="/builder/assets/index.
|
|
11
|
+
<script type="module" crossorigin src="/builder/assets/index.e6c92ddc.js"></script>
|
|
12
|
+
<link rel="stylesheet" href="/builder/assets/index.b7e50d51.css">
|
|
13
13
|
</head>
|
|
14
14
|
|
|
15
15
|
<body id="app">
|
package/dist/automation.js
CHANGED
|
@@ -2906,7 +2906,11 @@ var init_redis = __esm({
|
|
|
2906
2906
|
init_utils2();
|
|
2907
2907
|
init_timers2();
|
|
2908
2908
|
if (environment_default2.MOCK_REDIS) {
|
|
2909
|
-
|
|
2909
|
+
try {
|
|
2910
|
+
MockRedis = require("ioredis-mock");
|
|
2911
|
+
} catch (err) {
|
|
2912
|
+
console.log("Mock redis unavailable");
|
|
2913
|
+
}
|
|
2910
2914
|
}
|
|
2911
2915
|
RETRY_PERIOD_MS = 2e3;
|
|
2912
2916
|
STARTUP_TIMEOUT_MS = 5e3;
|