We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1c004 commit 8bfa5aeCopy full SHA for 8bfa5ae
src/index.js
@@ -1,7 +1,7 @@
1
// @ts-check
2
3
const { getConfiguration } = require('./config')
4
-const pluginCore = require('./pluginCore')
+const { generateFilePaths, runPa11y } = require('./pluginCore')
5
const pico = require('picocolors')
6
7
module.exports = {
@@ -11,13 +11,13 @@ module.exports = {
11
constants,
12
inputs,
13
})
14
- const htmlFilePaths = await pluginCore.generateFilePaths({
+ const htmlFilePaths = await generateFilePaths({
15
publishDir,
16
ignoreDirectories,
17
fileAndDirPaths: checkPaths,
18
19
20
- const { report, issueCount } = await pluginCore.runPa11y({
+ const { report, issueCount } = await runPa11y({
21
build,
22
htmlFilePaths,
23
wcagLevel,
0 commit comments