aria-ease 6.4.7 → 6.4.8

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
@@ -823,17 +823,27 @@ jobs:
823
823
  # ⬆️ If audit fails, workflow stops here
824
824
 
825
825
  - name: Run component contract tests
826
- run: npx aria-ease test
826
+ run: |
827
+ set -o pipefail
828
+ npm run test 2>&1 | tee component-contract-test-output.txt
827
829
  # ⬆️ If interaction tests fail, workflow stops here
828
830
 
829
831
  - name: Upload audit reports
830
- if: always()
832
+ if: failure()
831
833
  uses: actions/upload-artifact@v4
832
834
  with:
833
835
  name: accessibility-reports
834
836
  path: accessibility-reports/
835
837
  retention-days: 30
836
838
 
839
+ - name: Upload component contract tests report
840
+ if: failure()
841
+ uses: actions/upload-artifact@v4
842
+ with:
843
+ name: component-contract-test-output
844
+ path: component-contract-test-output.txt
845
+ retention-days: 30
846
+
837
847
  deploy:
838
848
  needs: accessibility-checks # ⬅️ This is the key
839
849
  runs-on: ubuntu-latest
package/bin/cli.cjs CHANGED
@@ -1796,8 +1796,6 @@ program.command("audit").description("Run axe-core powered accessibility audit o
1796
1796
  console.log(import_chalk2.default.yellow(` ${totalViolations} violation${totalViolations !== 1 ? "s" : ""} detected across ${allResults.length} page${allResults.length !== 1 ? "s" : ""}.`));
1797
1797
  console.log(import_chalk2.default.gray(` Review the generated report for details.
1798
1798
  `));
1799
- displayBadgeInfo("audit");
1800
- await promptAddBadge("audit", process.cwd());
1801
1799
  console.log(import_chalk2.default.dim("\n" + "\u2500".repeat(60)));
1802
1800
  console.log(import_chalk2.default.cyan("\u{1F499} Found aria-ease helpful?"));
1803
1801
  console.log(import_chalk2.default.white(" \u2022 Star us on GitHub: ") + import_chalk2.default.blue.underline("https://github.com/aria-ease/aria-ease"));
package/bin/cli.js CHANGED
@@ -229,8 +229,6 @@ program.command("audit").description("Run axe-core powered accessibility audit o
229
229
  console.log(chalk.yellow(` ${totalViolations} violation${totalViolations !== 1 ? "s" : ""} detected across ${allResults.length} page${allResults.length !== 1 ? "s" : ""}.`));
230
230
  console.log(chalk.gray(` Review the generated report for details.
231
231
  `));
232
- displayBadgeInfo("audit");
233
- await promptAddBadge("audit", process.cwd());
234
232
  console.log(chalk.dim("\n" + "\u2500".repeat(60)));
235
233
  console.log(chalk.cyan("\u{1F499} Found aria-ease helpful?"));
236
234
  console.log(chalk.white(" \u2022 Star us on GitHub: ") + chalk.blue.underline("https://github.com/aria-ease/aria-ease"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aria-ease",
3
- "version": "6.4.7",
3
+ "version": "6.4.8",
4
4
  "description": "Accessibility infrastructure for the entire frontend engineering lifecycle. Build accessible patterns, run automated audits, verify component interactions, and gate deployments — all in one system.",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",