shadscan-vue 0.1.2 → 0.2.0
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 +18 -0
- package/README.md +13 -0
- package/dist/index.js +649 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/vinayakkulkarni/shadscan-vue/compare/v0.1.2...v0.2.0) (2026-07-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **rules:** port the ten upstream checks that translate to Vue ([02eb641](https://github.com/vinayakkulkarni/shadscan-vue/commit/02eb6414d07e28f2e09dd92f3ce481a3effe6e90))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **rules:** follow a project SEO composable to its head call ([0a9433b](https://github.com/vinayakkulkarni/shadscan-vue/commit/0a9433b7313515277f0799ab8a064cd75dd62e3d))
|
|
14
|
+
* **rules:** skip redirect-only pages in the metadata check ([77d1c66](https://github.com/vinayakkulkarni/shadscan-vue/commit/77d1c66fdcbd0e4945abda10e8f65e3a58a0a3fb))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
18
|
+
|
|
19
|
+
* **cli:** mention the GitHub Action on the npm readme ([7a4ecfc](https://github.com/vinayakkulkarni/shadscan-vue/commit/7a4ecfc674bb1e741d4c6b63e68d0da23c64d2cb))
|
|
20
|
+
|
|
3
21
|
## [0.1.2](https://github.com/vinayakkulkarni/shadscan-vue/compare/v0.1.1...v0.1.2) (2026-07-26)
|
|
4
22
|
|
|
5
23
|
|
package/README.md
CHANGED
|
@@ -84,6 +84,19 @@ Exit codes are `0` (completed) and `1` (threshold not met, or an error).
|
|
|
84
84
|
`--fail-under` also fails when the score is unassessed or when source coverage
|
|
85
85
|
was partial, so a silently-skipped scan cannot pass a gate.
|
|
86
86
|
|
|
87
|
+
There is also a composite action, which writes the score and every failing
|
|
88
|
+
rule to the job summary:
|
|
89
|
+
|
|
90
|
+
```yaml
|
|
91
|
+
- uses: vinayakkulkarni/shadscan-vue@v0.2.0
|
|
92
|
+
with:
|
|
93
|
+
fail-under: 70
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
It takes `path`, `version`, `fail-under`, `category`, and `summary`, and
|
|
97
|
+
exposes `score`, `grade`, and `findings-count` as outputs. See the
|
|
98
|
+
[repository readme](https://github.com/vinayakkulkarni/shadscan-vue#github-action).
|
|
99
|
+
|
|
87
100
|
### Agent handoff
|
|
88
101
|
|
|
89
102
|
`--prompt` emits a remediation brief with the machine-readable report embedded
|