@epic-web/workshop-app 5.20.0 → 5.20.1
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/server/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
init as initApps,
|
|
9
9
|
setModifiedTimesForAppDirs
|
|
10
10
|
} from "@epic-web/workshop-utils/apps.server";
|
|
11
|
-
import {
|
|
11
|
+
import { checkForUpdatesCached } from "@epic-web/workshop-utils/git.server";
|
|
12
12
|
import { checkConnectionCached } from "@epic-web/workshop-utils/utils.server";
|
|
13
13
|
import { createRequestHandler } from "@remix-run/express";
|
|
14
14
|
import { ip as ipAddress } from "address";
|
|
@@ -35,7 +35,7 @@ const isPublished = !fs.existsSync(path.join(__dirname, "..", "app"));
|
|
|
35
35
|
const isDeployed = process.env.EPICSHOP_DEPLOYED === "true" || process.env.EPICSHOP_DEPLOYED === "1";
|
|
36
36
|
const isRunningInBuildDir = path.dirname(__dirname).endsWith("dist");
|
|
37
37
|
const epicshopAppRootDir = isRunningInBuildDir ? path.join(__dirname, "..", "..") : path.join(__dirname, "..");
|
|
38
|
-
const hasUpdatesPromise =
|
|
38
|
+
const hasUpdatesPromise = checkForUpdatesCached();
|
|
39
39
|
void getApps();
|
|
40
40
|
void checkConnectionCached();
|
|
41
41
|
void getPresentUsers();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epic-web/workshop-app",
|
|
3
|
-
"version": "5.20.
|
|
3
|
+
"version": "5.20.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@epic-web/invariant": "^1.0.0",
|
|
45
45
|
"@epic-web/remember": "^1.1.0",
|
|
46
46
|
"@epic-web/restore-scroll": "^1.1.1",
|
|
47
|
-
"@epic-web/workshop-presence": "5.20.
|
|
48
|
-
"@epic-web/workshop-utils": "5.20.
|
|
47
|
+
"@epic-web/workshop-presence": "5.20.1",
|
|
48
|
+
"@epic-web/workshop-utils": "5.20.1",
|
|
49
49
|
"@mdx-js/mdx": "^3.0.1",
|
|
50
50
|
"@mux/mux-player-react": "^3.0.0",
|
|
51
51
|
"@nasa-gcn/remix-seo": "^2.0.1",
|