Commit 9824a649 authored by Grant's avatar Grant
Browse files

Embedded Chat

parent 372f5686
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
v24.13.0
v24.4.1
+3 −1
Original line number Diff line number Diff line
@@ -17,5 +17,7 @@
  "yaml.schemas": {
    "https://gitlab.com/gitlab-org/gitlab-foss/-/raw/master/app/assets/javascripts/editor/schema/ci.json": "/.gitlab/ci/**/*.yml"
  },
  "editor.tabSize": 2
  "editor.tabSize": 2,
  "typescript.tsc.autoDetect": "off",
  "npm.autoDetect": "off"
}

.vscode/tasks.json

0 → 100644
+39 −0
Original line number Diff line number Diff line
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Start Dev",
      "group": "build",
      "dependsOn": ["dev: start server", "dev: start client"]
    },
    {
      "label": "dev: start server",
      "command": "yarn",
      "args": ["run", "dev:server"],
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false,
      },
    },
    {
      "label": "dev: start client",
      "command": "yarn",
      "args": ["run", "dev:client"],
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false,
      },
    },
    
  ]
}
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ COPY packages/admin/package.json ./packages/admin/
COPY packages/client/package.json ./packages/client/
COPY packages/lib/package.json ./packages/lib/
COPY packages/server/package.json ./packages/server/
COPY packages/chat/package.json ./packages/chat/

# Load yarn with the version in package.json
# as as elevated as it modifies system directories
@@ -58,6 +59,10 @@ RUN yarn workspace @sc07-canvas/lib run build
# janky? fix to keep imports in dev
# RUN sed -i -e 's/"main": ".*"/"main": ".\/dist\/index.js"/' packages/lib/package.json

# --- build chat ---

RUN yarn workspace @sc07-canvas/chat run build

# --- build main client ---

ARG VITE_INCLUDE_EVENT_INFO
+2 −1
Original line number Diff line number Diff line
@@ -7,7 +7,8 @@
    "packages/admin",
    "packages/client",
    "packages/server",
    "packages/lib"
    "packages/lib",
    "packages/chat"
  ],
  "main": "src/index.ts",
  "scripts": {
Loading