-
Notifications
You must be signed in to change notification settings - Fork 2
export react component #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
dbb14cb
9c3dce2
bee57b5
8693f64
0210d31
1505093
95c4a75
1de6c8d
1380995
3aae48e
0f4c025
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,6 +11,12 @@ | |||||
| "changelogTitle": "# Changelog" | ||||||
| } | ||||||
| ], | ||||||
| [ | ||||||
| "@semantic-release/exec", | ||||||
| { | ||||||
| "prepareCmd": "pnpm -r exec npm version ${nextRelease.version} --no-git-tag-version" | ||||||
|
||||||
| "prepareCmd": "pnpm -r exec npm version ${nextRelease.version} --no-git-tag-version" | |
| "prepareCmd": "pnpm --filter viewer exec npm version ${nextRelease.version} --no-git-tag-version" |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [build] | ||
| command = "pnpm run build" | ||
| publish = "sites/app/dist" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,41 +1,22 @@ | ||
| { | ||
| "name": "@biongff/vizarr", | ||
| "name": "biongff-monorepo", | ||
| "version": "1.1.1", | ||
| "type": "module", | ||
| "author": "BioNGFF", | ||
| "license": "MIT", | ||
| "scripts": { | ||
| "dev": "vite", | ||
| "build": "npm run check && vite build", | ||
| "preview": "vite preview", | ||
| "dev": "pnpm --filter app dev", | ||
| "lint": "biome ci", | ||
| "fix": "biome check --write", | ||
| "check": "tsc" | ||
| }, | ||
| "dependencies": { | ||
| "@deck.gl/core": "~9.0.0", | ||
| "@deck.gl/geo-layers": "~9.0.0", | ||
| "@deck.gl/layers": "~9.0.0", | ||
| "@emotion/react": "^11.14.0", | ||
| "@emotion/styled": "^11.14.1", | ||
| "@hms-dbmi/viv": "~0.17.2", | ||
| "@mui/icons-material": "^7.2.0", | ||
| "@mui/material": "^7.2.0", | ||
| "@vivjs/types": "~0.17.0", | ||
| "@zarrita/storage": "0.1.3", | ||
| "deck.gl": "~9.0.0", | ||
| "jotai": "^1.0.0", | ||
| "just-debounce-it": "^3.1.1", | ||
| "math.gl": "^4.1.0", | ||
| "p-map": "^7.0.3", | ||
| "quick-lru": "^7.0.0", | ||
| "react": "^18.2.0", | ||
| "react-dom": "^18.2.0", | ||
| "react-is": "18.3.1", | ||
| "zarrita": "0.5.0" | ||
| "check": "pnpm build:viewer && pnpm -r run check", | ||
| "build:viewer": "pnpm --filter vizarr build", | ||
| "build:app": "pnpm --filter app build", | ||
| "build": "pnpm build:viewer && pnpm build:app" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "^1.9.4", | ||
| "@semantic-release/changelog": "^6.0.3", | ||
| "@semantic-release/commit-analyzer": "^13.0.1", | ||
| "@semantic-release/exec": "^7.1.0", | ||
| "@semantic-release/git": "^10.0.1", | ||
| "@semantic-release/github": "^12.0.2", | ||
| "@semantic-release/npm": "^13.1.1", | ||
|
|
@@ -48,9 +29,6 @@ | |
| "typescript": "^5.8.2", | ||
| "vite": "^6.2.7" | ||
| }, | ||
| "overrides": { | ||
| "react-is": "^18.3.1" | ||
| }, | ||
| "packageManager": "[email protected]", | ||
| "pnpm": { | ||
| "patchedDependencies": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the release config, this command will update versions in all workspace packages including the root. The root
biongff-monorepopackage is not published and should not have its version synchronized with the viewer package. Consider filtering to only update the viewer package:pnpm --filter viewer exec npm version ...