Skip to content

Commit

Permalink
chore(deps): update node dependencies (#1516)
Browse files Browse the repository at this point in the history
* chore(deps): update node dependencies

* Entry point is now run method in DBML
  • Loading branch information
ggrossetie authored Aug 20, 2023
1 parent a0af394 commit fe8218c
Show file tree
Hide file tree
Showing 17 changed files with 1,303 additions and 562 deletions.
56 changes: 28 additions & 28 deletions bpmn/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bpmn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"url": "https://github.com/yuzutech/kroki.git"
},
"dependencies": {
"bpmn-js": "13.2.0",
"bpmn-js": "13.2.2",
"micro": "10.0.1",
"puppeteer": "20.6.0"
},
"devDependencies": {
"standard": "17.1.0"
},
"volta": {
"node": "18.16.0"
"node": "18.17.1"
}
}
2 changes: 1 addition & 1 deletion bytefield/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"standard": "17.1.0"
},
"volta": {
"node": "18.16.0"
"node": "18.17.1"
}
}
4 changes: 2 additions & 2 deletions dbml/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const render = require('@softwaretechnik/dbml-renderer')
const { run } = require('@softwaretechnik/dbml-renderer')

const encoding = 'utf-8'
let data
Expand All @@ -10,7 +10,7 @@ async function convert () {
return
}
try {
const svg = render.default(source, 'svg')
const svg = run(source, 'svg')
console.log(svg)
} catch (err) {
console.error(err)
Expand Down
Loading

0 comments on commit fe8218c

Please sign in to comment.