Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b28cab1
new structure and lint
timea-solid Oct 27, 2025
fc25c79
remove node 18
timea-solid Oct 27, 2025
999a17c
update gitignore
timea-solid Oct 28, 2025
d700229
update makefile
timea-solid Oct 28, 2025
09d2bba
uptated configs
timea-solid Oct 28, 2025
3a78d2a
improved tests
timea-solid Oct 28, 2025
34b7335
lint and types
timea-solid Oct 28, 2025
9660f1c
upated package.json
timea-solid Oct 28, 2025
81228d2
merge
timea-solid Oct 28, 2025
4d0d920
Update test/unit/setup.ts
timea-solid Oct 28, 2025
964537f
Update test/unit/setup.js
timea-solid Oct 28, 2025
97c13d5
Update src/publicData.ts
timea-solid Oct 28, 2025
01d8086
Update src/publicData.ts
timea-solid Oct 28, 2025
772fc74
dist needs to exist to run test
timea-solid Oct 28, 2025
e839bc9
Merge branch 'newFace' of https://github.com/SolidOS/contacts-pane in…
timea-solid Oct 28, 2025
b3a810b
identation fix
timea-solid Oct 28, 2025
88bf0c4
remove webpack, added babel imports, remove makefile
timea-solid Nov 4, 2025
21cacc5
remove webpack, added babel imports, remove makefile
timea-solid Nov 4, 2025
eecd19a
Merge branch 'main' into newFace
timea-solid Nov 4, 2025
6b7e680
merge main
timea-solid Nov 4, 2025
ecf326b
added peer dep and updated configs accordingly
timea-solid Nov 6, 2025
acade75
added peer dep
timea-solid Nov 6, 2025
0d8dc9e
added peer dep and updated configs accordingly
timea-solid Nov 6, 2025
5371787
no rdflib export form solid-ui anymore
timea-solid Nov 7, 2025
a03bb38
no store export form solid-ui anymore
timea-solid Nov 7, 2025
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ yarn-error.log*

# Compiled code
lib
dist

# Runtime data
pids
Expand Down
4 changes: 0 additions & 4 deletions .npmignore

This file was deleted.

14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Wrap TTL files into JS files for bundling with library

,all : lib/forms.js lib/vcard.js lib/instituteDetailsQuery.js
,all : dist/individualForms.js dist/vcard.js dist/instituteDetailsQuery.js dist/organizationForm.js

lib/forms.js : src/forms.ttl
dist/individualForms.js : src/forms.ttl
(echo 'module.exports = `' ; cat $< ; echo '`') > $@

#organizationForm.js : organizationForm.ttl
# (echo 'module.exports = `' ; cat organizationForm.ttl; echo '`') > organizationForm.js

src/vcard.ttl:
curl http://www.w3.org/2006/vcard/ns > src/vcard.ttl

lib/vcard.js : src/vcard.ttl
dist/vcard.js : src/vcard.ttl
(echo 'module.exports = `' ; cat $< ; echo '`') > $@


lib/instituteDetailsQuery.js : src/instituteDetailsQuery.sparql
dist/instituteDetailsQuery.js : src/instituteDetailsQuery.sparql
(echo 'module.exports = `' ; cat $< ; echo '`') > $@

dist/organizationForm.js : src/organizationForm.ttl
(echo 'module.exports = `' ; cat $< ; echo '`') > $@
166 changes: 0 additions & 166 deletions __tests__/unit/data-reformat-test.js

This file was deleted.

74 changes: 0 additions & 74 deletions __tests__/unit/setup.js

This file was deleted.

77 changes: 0 additions & 77 deletions __tests__/unit/setup.ts

This file was deleted.

10 changes: 5 additions & 5 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module.exports = {
export default {
presets: [
[
"@babel/preset-env",
'@babel/preset-env',
{
targets: {
node: "current",
node: 'current',
},
},
],
"@babel/preset-typescript",
'@babel/preset-typescript',
],
};
}
4 changes: 4 additions & 0 deletions declarations.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '*.ttl' {
const content: string;
export default content;
}
Loading
Loading