Skip to content

Commit

Permalink
Update node to 20.8.0 (#546)
Browse files Browse the repository at this point in the history
* set tool version

* npm i

* Dealing with OpenSSL compatibility errors

* update nodejs in csv3rdf to 20.8.0

* update nodejs in web Dockerfile to 20.8.0

* update eslint-plugin-vue to 7.0.0
  • Loading branch information
takanakahiko authored Oct 8, 2023
1 parent 8e11612 commit 14a9673
Show file tree
Hide file tree
Showing 7 changed files with 17,314 additions and 12,298 deletions.
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 20.8.0
2 changes: 1 addition & 1 deletion csv2rdf/csv2rdf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface ColumnSetting {
objectsSeparator?: string
}

const addQuad = (store: N3.N3Store, row:Object, columnSetting:ColumnSetting, setting: Setting) => {
const addQuad = (store: N3.Store, row:Object, columnSetting:ColumnSetting, setting: Setting) => {
const cell = row[columnSetting.key]
const separator = columnSetting.objectsSeparator
const objectValues = (separator ? cell.split(separator) : [cell]).filter(v => v).map(v => v.trim())
Expand Down
Loading

0 comments on commit 14a9673

Please sign in to comment.