@litejs/dom 23.3.0 → 23.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +8 -10
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -473,14 +473,12 @@ function toMinString(item) {
473
473
  return item.toString(true)
474
474
  }
475
475
 
476
- module.exports = {
477
- document: new Document(),
478
- DOMParser: DOMParser,
479
- XMLSerializer: XMLSerializer,
480
- StyleMap: StyleMap,
481
- Node: Node,
482
- HTMLElement: HTMLElement,
483
- DocumentFragment: DocumentFragment,
484
- Document: Document
485
- }
476
+ exports.document = new Document()
477
+ exports.DOMParser = DOMParser
478
+ exports.XMLSerializer = XMLSerializer
479
+ exports.StyleMap = StyleMap
480
+ exports.Node = Node
481
+ exports.HTMLElement = HTMLElement
482
+ exports.DocumentFragment = DocumentFragment
483
+ exports.Document = Document
486
484
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litejs/dom",
3
- "version": "23.3.0",
3
+ "version": "23.4.0",
4
4
  "description": "A small DOM library for server-side testing, rendering, and handling of HTML files",
5
5
  "license": "MIT",
6
6
  "author": "Lauri Rooden <lauri@rooden.ee>",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "repository": "github:litejs/dom",
23
23
  "devDependencies": {
24
- "@litejs/cli": "23.3.5",
24
+ "@litejs/cli": "23.4.3",
25
25
  "jshint": "2.13.6"
26
26
  },
27
27
  "litejs": {