Skip to content
Snippets Groups Projects
Commit 55b4f105 authored by David Sveningsson's avatar David Sveningsson
Browse files

feat: support node exports field

parent fd611c84
No related branches found
No related tags found
1 merge request!119Bundle dependencies
Pipeline #565989572 failed
......@@ -15,7 +15,7 @@ With NPM 7 or later it will be satisfied by the peer dependency but for a more c
### In `cypress/plugins/index.js`:
```js
const htmlvalidate = require("cypress-html-validate/dist/plugin");
const htmlvalidate = require("cypress-html-validate/plugin");
module.exports = (on) => {
htmlvalidate.install(on);
......@@ -25,7 +25,7 @@ module.exports = (on) => {
### In `cypress/support/index.js`:
```js
import "cypress-html-validate/dist/commands";
import "cypress-html-validate/commands";
```
### In specs:
......
......@@ -18,6 +18,12 @@
},
"license": "MIT",
"author": "David Sveningsson <ext@sidvind.com>",
"exports": {
".": "./dist/index.js",
"./plugin": "./dist/plugin.js",
"./commands": "./dist/commands.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment