@datapos/datapos-development 0.3.274 → 0.3.279

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/README.md CHANGED
@@ -60,7 +60,7 @@ The `src/index.ts' file exposes the following utilities:
60
60
 
61
61
  The OWASP Dependency Check Report identifies known vulnerabilities in project dependencies. It is generated automatically on each release using the npm package `owasp-dependency-check`.
62
62
 
63
- [View the OWASP Dependency Check Report](https://data-positioning.github.io/datapos-development/dependency-check-reports/dependency-check-report.html)
63
+ [View the OWASP Dependency Check Report](https://data-positioning.github.io/datapos-development/dependency-check-report.html)
64
64
 
65
65
  ### Dependency Licenses
66
66
 
@@ -83,7 +83,7 @@ The following table lists top-level production and peer dependencies. All these
83
83
 
84
84
  The Bundle Analysis Report provides a detailed breakdown of the bundle's composition and module sizes, helping to identify which modules contribute most to the final build. It is generated automatically on each release using the npm package `rollup-plugin-visualizer`.
85
85
 
86
- [View the Bundle Analysis Report](https://data-positioning.github.io/datapos-development/stats/index.html)
86
+ [View the Bundle Analysis Report](https://data-positioning.github.io/datapos-development/stats.html)
87
87
 
88
88
  ## Repository Common Management Commands
89
89
 
@@ -7905,6 +7905,8 @@ async function op() {
7905
7905
  Re("Audit Dependencies"), await Rh();
7906
7906
  const e = await Se("package.json");
7907
7907
  await Ie("1️⃣", "owasp-dependency-check", [
7908
+ "--out",
7909
+ ".",
7908
7910
  "--project",
7909
7911
  e.name ?? "unknown",
7910
7912
  "--enableRetired",
@@ -7918,7 +7920,7 @@ async function op() {
7918
7920
  }
7919
7921
  async function Kh(e) {
7920
7922
  se(`${e} Insert OWASP Badge(s) into 'README.md'`);
7921
- const t = await Se("./dependency-check-reports/dependency-check-report.json"), i = { critical: 0, high: 0, moderate: 0, low: 0, unknown: 0 };
7923
+ const t = await Se("./dependency-check-report.json"), i = { critical: 0, high: 0, moderate: 0, low: 0, unknown: 0 };
7922
7924
  for (const o of t.dependencies)
7923
7925
  if (o.vulnerabilities != null)
7924
7926
  for (const S of o.vulnerabilities) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.274",
3
+ "version": "0.3.279",
4
4
  "description": "A library of utilities for managing the Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",