Skip to content
Open
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
3 changes: 3 additions & 0 deletions apps/ariada-console/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
build/
.svelte-kit/
27 changes: 27 additions & 0 deletions apps/ariada-console/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "@ariada-org/ariada-console",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "EUPL-1.2",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"@ariada-org/admin-surface": "file:../../packages/admin-surface",
"@ariada-org/admin-svelte": "file:../../packages/admin-svelte",
"ag-grid-community": "^36.0.2"
Comment on lines +14 to +16

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

Regenerate and commit the workspace lockfile.

pnpm install --frozen-lockfile currently fails because pnpm-lock.yaml does not match the linked package manifests, so CI cannot install or build this app. Run the workspace install and commit the updated lockfile, including the packages/admin-surface specifiers.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/ariada-console/package.json` around lines 14 - 16, Regenerate the
workspace lockfile after adding the linked dependencies in the
apps/ariada-console manifest, ensuring the lockfile reflects the
packages/admin-surface specifiers and allows pnpm install --frozen-lockfile to
succeed. Commit the updated pnpm-lock.yaml without changing unrelated dependency
definitions.

Source: Pipeline failures

},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"svelte": "^5.19.0",
"svelte-check": "^4.1.4",
"typescript": "^5.7.3",
"vite": "^6.0.7"
}
}
Loading
Loading