Package Exports
- @netless/xml-js
- @netless/xml-js/dist/index.es.js
- @netless/xml-js/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@netless/xml-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
This fork moves "sax" to "devDependencies" and bundles it with rollup (rollup-plugin-node-polyfills).
(rollup-plugin-polyfill-node doesn't work, don't know why)
I also removed tests and coverage for faster setup. 😅
Applied these useful forks:
- Escape
&
<
in attributes - Add nativeTypeAttributes type definition
- Handling errors with onErrorFn instead of throwing exception on first error
- ... Need more? PR on me!
Install: npm i @netless/xml-js
.
Replace it in package.json:
"dependencies": {
"xml-js": "npm:@netless/xml-js"
}
Replace it in vite.config.js:
export default defineConfig({
alias: {
"xml-js": "@netless/xml-js"
}
})
Replace it in webpack.config.js
{
"resolve": {
"alias": {
"xml-js": "@netless/xml-js"
}
}
}
Other ways: see how preact does.
Todo
- Maybe replace sax with saxes.
Changelog
1.6.15
- Transfer to
@netless/
.
1.6.14
- Use named export, for tree shaking purpose.
Read the original README.