-
- Downloads
feat!: cjs/esm hybrid package
fixes #112 BREAKING CHANGE: the library is now shipped as a hybrid CJS/ESM package. If you are simply consuming the CLI tool or one of the existing integrations this will not affect you. For plugin developers and if you consume the API in any way the biggest change is that the distributed source is now bundled and you can no longer access individual files. Typically something like: ```diff -import foo from "html-validate/dist/foo"; +import { foo } from "html-validate" ``` Feel free to open an issue if some symbol you need isn't exported. If your usage includes checking presence of rules use the `ruleExists` helper: ```diff -try { - require("html-validate/dist/rules/attr-case"); -} catch (err) { - /* fallback */ -} +import { ruleExists } from "html-validate"; +if (!ruleExists("attr-case")) { + /* fallback */ +} ```
Showing
- README.md 16 additions, 0 deletionsREADME.md
- bin/html-validate.js 1 addition, 1 deletionbin/html-validate.js
- docs/dev/running-in-browser.md 105 additions, 0 deletionsdocs/dev/running-in-browser.md
- docs/dgeni/inline-validate/processors/validate-results.js 3 additions, 2 deletionsdocs/dgeni/inline-validate/processors/validate-results.js
- docs/dgeni/processors/rules.js 3 additions, 13 deletionsdocs/dgeni/processors/rules.js
- docs/dgeni/templates/base.template.html 1 addition, 0 deletionsdocs/dgeni/templates/base.template.html
- jest.d.ts 1 addition, 1 deletionjest.d.ts
- jest.js 1 addition, 1 deletionjest.js
- package-lock.json 375 additions, 0 deletionspackage-lock.json
- package.json 28 additions, 10 deletionspackage.json
- rollup.config.js 130 additions, 0 deletionsrollup.config.js
- scripts/pkg 13 additions, 0 deletionsscripts/pkg
- src/browser.ts 3 additions, 3 deletionssrc/browser.ts
- src/cli/html-validate.ts 1 addition, 1 deletionsrc/cli/html-validate.ts
- src/config/config.ts 1 addition, 1 deletionsrc/config/config.ts
- src/config/index.ts 1 addition, 0 deletionssrc/config/index.ts
- src/index.ts 1 addition, 1 deletionsrc/index.ts
- src/rule.ts 1 addition, 1 deletionsrc/rule.ts
- src/rules/unrecognized-char-ref.ts 1 addition, 1 deletionsrc/rules/unrecognized-char-ref.ts
- test-utils.d.ts 1 addition, 1 deletiontest-utils.d.ts
Loading
Please register or sign in to comment