Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runner/apps/authoring/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function docsPageUrl(framework: string, permalink: string): string {
function describeRuntimeError(e: unknown, engine: string): string {
const msg = e instanceof Error ? e.message : String(e);
if (engine === "container" && /failed to fetch|networkerror|load failed|session start failed|fetch/i.test(msg)) {
return "Vue and Angular examples run on the container engine, which needs the demo server (Cloudflare Sandbox). It isn't reachable here — run the local API worker (requires Docker) or open this example on the deployed demos.handsontable.com.";
return "This example runs on the container engine, which needs the demo server (Cloudflare Sandbox). It isn't reachable here — run the local API worker (requires Docker) or open this example on the deployed demos.handsontable.com.";
}
return msg;
}
Expand Down
32 changes: 16 additions & 16 deletions runner/config/frameworks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"buildCommand": "tsc && vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"javascript": {
"tier": 1,
Expand All @@ -28,7 +28,7 @@
"buildCommand": "vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"typescript": {
"tier": 1,
Expand All @@ -42,7 +42,7 @@
"buildCommand": "tsc && vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"react": {
"tier": 1,
Expand All @@ -56,7 +56,7 @@
"buildCommand": "tsc -b && vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"react-js": {
"tier": 1,
Expand All @@ -71,7 +71,7 @@
"buildCommand": "vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"ant-design": {
"tier": 1,
Expand All @@ -86,7 +86,7 @@
"buildCommand": "vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"mui": {
"tier": 1,
Expand All @@ -101,7 +101,7 @@
"buildCommand": "tsc -b && vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"base-web": {
"tier": 1,
Expand All @@ -116,7 +116,7 @@
"buildCommand": "tsc -b && vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"vue": {
"tier": 1,
Expand All @@ -130,7 +130,7 @@
"buildCommand": "vite build",
"outputDir": "dist",
"port": null,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"angular": {
"tier": 2,
Expand All @@ -139,12 +139,12 @@
"htWrappers": ["@handsontable/angular-wrapper"],
"entry": "src/main.ts",
"htmlEntry": "src/index.html",
"devCommand": "npm run start -- --host 0.0.0.0 --disable-host-check --port 3000",
"devCommand": "pnpm run start -- --host 0.0.0.0 --disable-host-check --port 3000",
"buildCommand": "ng build",
"outputDir": "dist",
"outputGlob": "dist/*/browser",
"port": 3000,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"next.js": {
"tier": 2,
Expand All @@ -157,7 +157,7 @@
"outputDir": "out",
"staticExport": true,
"port": 3000,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"next-shadcn.js": {
"tier": 2,
Expand All @@ -170,7 +170,7 @@
"outputDir": "out",
"staticExport": true,
"port": 3000,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"astro": {
"tier": 2,
Expand All @@ -182,7 +182,7 @@
"buildCommand": "astro build",
"outputDir": "dist",
"port": 4321,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"nuxt": {
"tier": 2,
Expand All @@ -194,7 +194,7 @@
"buildCommand": "nuxt generate",
"outputDir": ".output/public",
"port": 3000,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
},
"remix": {
"tier": 2,
Expand All @@ -207,7 +207,7 @@
"outputDir": "build/client",
"spaMode": true,
"port": 5173,
"installCommand": "npm install"
"installCommand": "pnpm install --frozen-lockfile"
}
}
}
11 changes: 0 additions & 11 deletions runner/containers/angular/Dockerfile

This file was deleted.

40 changes: 0 additions & 40 deletions runner/containers/angular/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions runner/containers/astro/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions runner/containers/astro/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions runner/containers/next-shadcn/Dockerfile

This file was deleted.

40 changes: 0 additions & 40 deletions runner/containers/next-shadcn/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions runner/containers/next/Dockerfile

This file was deleted.

35 changes: 0 additions & 35 deletions runner/containers/next/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions runner/containers/nuxt/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions runner/containers/nuxt/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions runner/containers/remix/Dockerfile

This file was deleted.

Loading