websequencediagrams 6.0.0 → 6.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -28,7 +28,7 @@ Example:
28
28
  const wsd = require('websequencediagrams');
29
29
  const fs = require('node:fs');
30
30
 
31
- (async() => {
31
+ (async () => {
32
32
  const [buf, typ] = await wsd.diagram('Alice->Bob: message', 'modern-blue', 'png');
33
33
  console.log('Received MIME type:', typ);
34
34
  fs.writeFile('my.png', buf);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "websequencediagrams",
3
3
  "description": "Interface to websequencediagrams.com",
4
- "version": "6.0.0",
4
+ "version": "6.0.2",
5
5
  "author": "Joe Hildebrand <joe-github@cursive.net>",
6
6
  "contributors": [
7
7
  "Ed Crump <ed.crump@gmail.com> (https://github.com/icedawn)",
@@ -10,7 +10,7 @@
10
10
  "homepage": "https://github.com/hildjj/node-websequencediagrams",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git://github.com/hildjj/node-websequencediagrams"
13
+ "url": "git://github.com/hildjj/node-websequencediagrams.git"
14
14
  },
15
15
  "directories": {
16
16
  "bin": "bin",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "yargs": "^17.7.2"
30
+ "yargs": "^18.0.0"
31
31
  },
32
32
  "engines": {
33
33
  "node": ">=20"