Skip to content

Commit 0a55ad0

Browse files
authored
Merge pull request #143 from SolidOS/milestone3m
milestone3m v3.1.0
2 parents de1f23a + 93f91c9 commit 0a55ad0

18 files changed

Lines changed: 12036 additions & 3681 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77

8+
# Webpack files
9+
lib
10+
811
# Runtime data
912
pids
1013
*.pid

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,11 @@ the syntax is checked before they save it back.
1313
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.
1414

1515
Editing can be aborted by the cancel(X) button.
16+
17+
### Generative AI usage
18+
The SolidOS team is using GitHub Copilot integrated in Visual Studio Code.
19+
We have added comments in the code to make it explicit which parts are 100% written by AI.
20+
Example:
21+
* Some code was generated by the GPT-5.3-Codex model in GitHub Copilot based on the following prompt:
22+
* Can you refactor this code setUnedited () to use CSS instead of inline js styles
23+

babel.config.mjs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
export default {
2+
presets: [
3+
[
4+
'@babel/preset-env',
5+
{
6+
targets: {
7+
browsers: ['> 1%', 'last 3 versions', 'not dead']
8+
},
9+
},
10+
],
11+
],
12+
plugins: [
13+
[
14+
'babel-plugin-inline-import', {
15+
extensions: [
16+
'.ttl'
17+
]
18+
}
19+
]
20+
]
21+
}

dev/context.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { solidLogicSingleton, store } from 'solid-logic'
2+
3+
export const context = {
4+
session: {
5+
store,
6+
paneRegistry: {
7+
byName: (name) => {
8+
// longChatPane
9+
return null
10+
}
11+
},
12+
logic: solidLogicSingleton
13+
},
14+
dom: document,
15+
getOutliner: () => null,
16+
}
17+
18+
export const fetcher = store.fetcher

0 commit comments

Comments
 (0)