@datapos/datapos-development 0.3.274 → 0.3.278
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 +2 -2
- package/dist/datapos-development.es.js +2 -0
- package/package.json +1 -1
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-
|
|
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
|
|
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",
|
package/package.json
CHANGED