Skip to content

Commit 55f0396

Browse files
committed
just invoke binary and trust in PATH
1 parent 8d06bf4 commit 55f0396

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,11 @@ npm install @netlify/build -g
7373
# In the project working directory, run the build as netlify would with the build bot
7474
netlify-build
7575
```
76+
77+
78+
## Issues
79+
80+
- https://github.com/jaimeiniesta/serverless-axe-cli/pull/1
81+
- https://github.com/adieuadieu/serverless-chrome/issues/143
82+
- https://gist.github.com/stephenmathieson/57c1fa4a8a6bdbb489f91d4a4f713ee9
83+
- npm install chromedriver

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function netlifyPlugin(conf) {
2222
.replace(/^\//, '');
2323

2424
await run.command(
25-
`./node_modules/.bin/axe ${site} ${axeFlags} --save ${resultsPath}`
25+
// `./node_modules/.bin/axe ${site} ${axeFlags} --save ${resultsPath}`
26+
`axe ${site} ${axeFlags} --save ${resultsPath}`
2627
);
2728

2829
let results = require(resultsPath);

0 commit comments

Comments
 (0)