aria-ease 6.4.7 → 6.4.10
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 +27 -29
- package/bin/{chunk-TQBS54MM.js → chunk-GFKAJHCS.js} +3 -3
- package/bin/cli.cjs +890 -485
- package/bin/cli.js +1 -3
- package/bin/contractTestRunnerPlaywright-7BCEDPZF.js +970 -0
- package/bin/{test-WICJJ62P.js → test-JGKWOL6J.js} +34 -29
- package/dist/{chunk-TQBS54MM.js → chunk-GFKAJHCS.js} +3 -3
- package/dist/contractTestRunnerPlaywright-7BCEDPZF.js +970 -0
- package/dist/index.cjs +890 -483
- package/dist/index.js +34 -29
- package/dist/src/utils/test/{chunk-TQBS54MM.js → chunk-GFKAJHCS.js} +3 -3
- package/dist/src/utils/test/contractTestRunnerPlaywright-O7FF3X67.js +941 -0
- package/dist/src/utils/test/contracts/ComboboxContract.json +1 -0
- package/dist/src/utils/test/index.cjs +861 -477
- package/dist/src/utils/test/index.d.cts +6 -1
- package/dist/src/utils/test/index.d.ts +6 -1
- package/dist/src/utils/test/index.js +34 -29
- package/package.json +1 -1
- package/bin/contractTestRunnerPlaywright-D57V4RSU.js +0 -628
- package/dist/contractTestRunnerPlaywright-D57V4RSU.js +0 -628
- package/dist/src/utils/test/contractTestRunnerPlaywright-HV4EIRDH.js +0 -610
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"));
|
|
@@ -239,7 +237,7 @@ program.command("audit").description("Run axe-core powered accessibility audit o
|
|
|
239
237
|
process.exit(1);
|
|
240
238
|
});
|
|
241
239
|
program.command("test").description("Run core a11y accessibility standard tests on UI components").action(async () => {
|
|
242
|
-
const { runTest } = await import("./test-
|
|
240
|
+
const { runTest } = await import("./test-JGKWOL6J.js");
|
|
243
241
|
runTest();
|
|
244
242
|
});
|
|
245
243
|
program.command("help").description("Display help information").action(() => {
|