-
Notifications
You must be signed in to change notification settings - Fork 0
Init #1
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
Closed
Init #1
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8b493d9
init
mdroidian 09a0eb7
Stabilize canvas tools, picker UX, and Roam prop persistence
mdroidian c842b88
Enhance NodePickerDialog with escape key handling, selection state ma…
mdroidian 31c53ab
Remove unused type definitions from tldraw-shapes.d.ts and refactor D…
mdroidian a069dba
Add Tailwind CSS as a dev dependency and create initial Tailwind conf…
mdroidian 25a04b3
Refactor DefaultNodeUtil and Tldraw components to improve type safety…
mdroidian 93bbfc6
Enhance search functionality in DefaultNodeUtil and Tldraw components…
mdroidian 716d3fb
Refactor Tldraw component to improve inspector target management and …
mdroidian 2474e14
Refactor search functionality in DefaultNodeUtil and Tldraw component…
mdroidian 6d8c963
Implement inspector maximization feature in Tldraw component, enhanci…
mdroidian 973a113
Enhance DefaultNodeUtil and Tldraw components by adding buttons for o…
mdroidian 9097d3b
Add Prettier configuration and plugins for improved code formatting
mdroidian 1f1b351
Update DefaultNodeUtil and uiOverrides components to enhance node sty…
mdroidian 46f6a70
Add Prettier and Prettier Tailwind CSS plugin updates in pnpm-lock.yaml
mdroidian 0283987
Add RoamRenderedString component to DefaultNodeUtil for improved rend…
mdroidian 53328d6
Enhance Tldraw component with drag-and-drop functionality for block UIDs
mdroidian 3f53fad
Update tldrawStyles to prevent host CSS from overriding tldraw cursor…
mdroidian 296c017
Update tldraw dependency to version 3.15.1 and enhance package.json c…
mdroidian 65c67fd
a bunch of fixes
mdroidian b3c607c
Refactor RoamRenderedString component in DefaultNodeUtil for improved…
mdroidian 62bc836
Update package.json and pnpm-lock.yaml for dependency management
mdroidian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "plugins": ["prettier-plugin-tailwindcss"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "editor.formatOnSave": true, | ||
| "prettier.requireConfig": true, | ||
| "prettier.prettierPath": "./node_modules/prettier", | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode", | ||
| "eslint.useFlatConfig": true, | ||
| "eslint.workingDirectories": [{ "mode": "auto" }] | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| npm run build:roam | ||
| pnpm run build:roam | ||
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Add a shebang line.
The script lacks a shebang, so the shell used to execute it is undefined and platform-dependent. This was also flagged by Shellcheck (SC2148).
Proposed fix
+#!/usr/bin/env bash pnpm run build:roam📝 Committable suggestion
🧰 Tools
🪛 Shellcheck (0.11.0)
[error] 1-1: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
(SC2148)
🤖 Prompt for AI Agents