Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Webpack build
lib

# Runtime data
pids
*.pid
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,11 @@ the syntax is checked before they save it back.
Once selected this pane as a view of a file, then the pen icon allows to switch to editing mode, and the check mark button allows the file to be saved back.

Editing can be aborted by the cancel(X) button.

### Genertive AI usage
The SolidOS team is using GitHub Copilot integrate in Visual Studio Code.
We have added comments in the code to make it explicit which parts are 100% written by AI.
Example:
* Some code was generated by the GPT-5.3-Codex model in GitHub Copilot based on the following prompt:
* Can you refactor this code setUnedited () to use css instead of inline js styles

21 changes: 21 additions & 0 deletions babel.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export default {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['> 1%', 'last 3 versions', 'not dead']
},
},
],
],
plugins: [
[
'babel-plugin-inline-import', {
extensions: [
'.ttl'
]
}
]
]
}
18 changes: 18 additions & 0 deletions dev/context.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { solidLogicSingleton, store } from 'solid-logic'

export const context = {
session: {
store,
paneRegistry: {
byName: (name) => {
// longChatPane
return null
}
},
logic: solidLogicSingleton
},
dom: document,
getOutliner: () => null,
}

export const fetcher = store.fetcher
Loading
Loading