File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 32
32
" Bash(pnpm i18n:*:*)" ,
33
33
" Bash(pnpm info:*)" ,
34
34
" Bash(pnpm list:*)" ,
35
- " Bash(pnpm list:*)" ,
36
35
" Bash(pnpm remove:*)" ,
37
36
" Bash(pnpm run:*)" ,
38
37
" Bash(pnpm test:*)" ,
Original file line number Diff line number Diff line change 2
2
3
3
import { createProxyServer , type ProxyServer } from "http-proxy-3" ;
4
4
import LRU from "lru-cache" ;
5
-
6
- import basePath from "@cocalc/backend/base-path" ;
7
- import getLogger from "@cocalc/hub/logger" ;
8
5
import { getEventListeners } from "node:events" ;
9
- import { proxyConatWebsocket } from "./proxy-conat " ;
6
+ import getLogger from "@cocalc/hub/logger " ;
10
7
import stripRememberMeCookie from "./strip-remember-me-cookie" ;
11
8
import { getTarget } from "./target" ;
12
9
import { stripBasePath } from "./util" ;
13
10
import { versionCheckFails } from "./version" ;
11
+ import { proxyConatWebsocket } from "./proxy-conat" ;
12
+ import basePath from "@cocalc/backend/base-path" ;
14
13
15
14
const LISTENERS_HACK = true ;
16
15
Original file line number Diff line number Diff line change 5
5
6
6
import { Application } from "express" ;
7
7
8
- import base_path from "@cocalc/backend/base-path" ;
9
- import { ProjectControlFunction } from "@cocalc/server/projects/control" ;
10
8
import getLogger from "../logger" ;
11
9
import initRequest from "./handle-request" ;
12
10
import initUpgrade from "./handle-upgrade" ;
11
+ import base_path from "@cocalc/backend/base-path" ;
12
+ import { ProjectControlFunction } from "@cocalc/server/projects/control" ;
13
13
14
14
const logger = getLogger ( "proxy" ) ;
15
15
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ import basePath from "@cocalc/backend/base-path";
16
16
import { getLogger } from "@cocalc/hub/logger" ;
17
17
import handleRaw from "@cocalc/next/lib/share/handle-raw" ;
18
18
import { callback2 } from "@cocalc/util/async-utils" ;
19
- import { separate_file_extension } from "@cocalc/util/misc" ;
20
19
import { database } from "../database" ;
21
20
import createLandingRedirect from "./landing-redirect" ;
22
21
import shareRedirect from "./share-redirect" ;
22
+ import { separate_file_extension } from "@cocalc/util/misc" ;
23
23
24
24
export default async function init ( app : Application ) {
25
25
const winston = getLogger ( "nextjs" ) ;
You can’t perform that action at this time.
0 commit comments