isomorphic-dompurify 0.3.0 → 0.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/README.md +7 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Isomorphic DOMPurify
2
2
  [![npm version](https://badge.fury.io/js/isomorphic-dompurify.svg)](https://badge.fury.io/js/isomorphic-dompurify)
3
- [![Build Status](https://travis-ci.com/kkomelin/isomorphic-dompurify.svg?branch=master)](https://travis-ci.org/github/kkomelin/isomorphic-dompurify)
3
+ [![Build Status](https://travis-ci.org/kkomelin/isomorphic-dompurify.svg?branch=master)](https://travis-ci.org/kkomelin/isomorphic-dompurify)
4
4
 
5
5
  The library makes it possible to seamlessly use [DOMPurify](https://github.com/cure53/DOMPurify) on server and client in the same way.
6
6
  It does nothing by itself except providing an isomorthic/universal wrapper around DOMPurify, so all credits go to DOMPurify authors and contributors.
@@ -44,12 +44,12 @@ var clean = DOMPurify.sanitize(dirty);
44
44
 
45
45
  ## Supported Environments
46
46
 
47
- The library is aimed to work **everywhere** and has been tested (manually) in the following environments:
48
- - Node.js, CommonJS
49
- - Node.js, Webpack, ES6
50
- - React.js without SSR
51
- - Next.js without SSR
52
- - Next.js with SSR
47
+ The library is aimed to work **everywhere** and has been tested in the following environments:
48
+ - Node.js, CommonJS ([automatically](https://travis-ci.org/kkomelin/isomorphic-dompurify) & manually)
49
+ - Node.js, Webpack, ES6 (manually)
50
+ - React.js without SSR (manually)
51
+ - Next.js without SSR (manually)
52
+ - Next.js with SSR (manually)
53
53
 
54
54
  ## License
55
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isomorphic-dompurify",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Makes it possible to use DOMPurify on server and client in the same way.",
5
5
  "keywords": [
6
6
  "dompurify",
@@ -26,11 +26,11 @@
26
26
  "main": "index.js",
27
27
  "dependencies": {
28
28
  "@types/dompurify": "^2.0.2",
29
- "dompurify": "^2.0.11",
29
+ "dompurify": "^2.0.12",
30
30
  "jsdom": "^16.2.1"
31
31
  },
32
32
  "types": "index.d.ts",
33
33
  "devDependencies": {
34
- "jest": "^26.0.1"
34
+ "jest": "^26.1.0"
35
35
  }
36
36
  }