@tmorin/plantuml-libs 6.1.0 → 6.1.1

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [6.1.1](https://github.com/tmorin/plantuml-libs/compare/v6.1.0...v6.1.1) (2021-12-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * downgrade the PlantUML version to 1.2021.13 ([d62ace0](https://github.com/tmorin/plantuml-libs/commit/d62ace07297ab4765f4f3086b34e4749e382dc4e))
11
+
5
12
  ## [6.1.0](https://github.com/tmorin/plantuml-libs/compare/v6.0.1...v6.1.0) (2021-12-03)
6
13
 
7
14
 
package/bin/gdiag.js CHANGED
@@ -7,22 +7,6 @@ const fetch = require('node-fetch')
7
7
  const moment = require('moment');
8
8
  const glob = require('glob');
9
9
 
10
- /**
11
- * @typedef Args
12
- * @type {object}
13
- * @property {string} wd
14
- * @property {string} td
15
- * @property {string} ld
16
- * @property {number} jc
17
- * @property {number} pv
18
- * @property {boolean} c
19
- */
20
-
21
- /**
22
- * @type Args
23
- */
24
- const ARGS = getArgs();
25
-
26
10
  function getArgs() {
27
11
  return require('yargs')
28
12
  .scriptName('gdiag')
@@ -53,7 +37,7 @@ function getArgs() {
53
37
  })
54
38
  .option('plantuml-version', {
55
39
  alias: 'pv',
56
- default: "1.2021.15",
40
+ default: "1.2021.13",
57
41
  describe: 'The version of PlantUML to use.',
58
42
  type: 'string'
59
43
  })
@@ -68,6 +52,22 @@ function getArgs() {
68
52
  .argv;
69
53
  }
70
54
 
55
+ /**
56
+ * @typedef Args
57
+ * @type {object}
58
+ * @property {string} wd
59
+ * @property {string} td
60
+ * @property {string} ld
61
+ * @property {number} jc
62
+ * @property {number} pv
63
+ * @property {boolean} c
64
+ */
65
+
66
+ /**
67
+ * @type Args
68
+ */
69
+ const ARGS = getArgs();
70
+
71
71
  function getLatestRunFile() {
72
72
  return P.join(ARGS.td, 'LAST_RUN')
73
73
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmorin/plantuml-libs",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "description": "A set of resources for [PlantUML](https://plantuml.com) to define diagrams for AWS, Azure, EIP ...",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/tmorin/plantuml-libs#readme",