-
Notifications
You must be signed in to change notification settings - Fork 3
Improvements #102
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
Open
timea-solid
wants to merge
21
commits into
main
Choose a base branch
from
newFace
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Improvements #102
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
e5efead
drop node 18
timea-solid 7704640
renamed Documentation to docs
timea-solid 7356cce
added dist to ignore
timea-solid cc8eb93
improved makefile, moved all in src folder
timea-solid 5d1a3ba
imporved scripts
timea-solid 21bb8ee
webpack for dist, moved files, improved configs
timea-solid 03b85ff
updated dep
timea-solid 5aa0efb
fix webpack lint
timea-solid 595b8c8
Update dev/context.js
timea-solid a771fa6
Update src/csvButton.js
timea-solid 8dc0e86
Update Makefile
timea-solid 0dab745
fix lint issue
timea-solid 8fc7965
inline import instead of Makefile
timea-solid ab3158d
added externals, improve bundles
timea-solid 4a35a02
peer dependencies, removed husky and lint-staged for CI linting
timea-solid 1b680ae
fix lint
timea-solid eb10e99
merge main
timea-solid 51434b0
peer deps, update configs and test dev
timea-solid 8459298
lint fix
timea-solid b6734c9
improve external naming
timea-solid 5226d98
no rdflib export form solid-ui anymore
timea-solid 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,6 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| node-version: | ||
| - 18.x | ||
| - 20.x | ||
| - 22.x | ||
| steps: | ||
|
|
||
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 was deleted.
Oops, something went wrong.
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,5 +1,21 @@ | ||
| module.exports = { | ||
| export default { | ||
| presets: [ | ||
| [ | ||
| '@babel/preset-env', | ||
| { | ||
| targets: { | ||
| node: 'current', | ||
| }, | ||
| }, | ||
| ], | ||
| ], | ||
| plugins: [ | ||
| ["@babel/plugin-transform-runtime"] | ||
| [ | ||
| 'babel-plugin-inline-import', { | ||
| extensions: [ | ||
| '.ttl' | ||
| ] | ||
| } | ||
| ] | ||
| ] | ||
| }; | ||
| } |
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,18 +1,18 @@ | ||
| import { DataBrowserContext, PaneRegistry } from "pane-registry"; | ||
| import { LiveStore, solidLogicSingleton, store } from "solid-logic"; | ||
| import { solidLogicSingleton, store } from 'solid-logic' | ||
|
|
||
| export const context = { | ||
| session: { | ||
| store: store, | ||
| store, | ||
| paneRegistry: { | ||
| byName: (name) => { | ||
| return // longChatPane | ||
| // longChatPane | ||
| return null | ||
| } | ||
| }, | ||
| logic : solidLogicSingleton | ||
| logic: solidLogicSingleton | ||
| }, | ||
| dom: document, | ||
| getOutliner: () => null, | ||
| }; | ||
| } | ||
|
|
||
| export const fetcher = store.fetcher; | ||
| export const fetcher = store.fetcher | ||
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 was deleted.
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.
Uh oh!
There was an error while loading. Please reload this page.