re2js 0.3.0 → 0.3.1

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.
@@ -2,7 +2,7 @@
2
2
  * re2js
3
3
  * RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching
4
4
  *
5
- * @version v0.3.0
5
+ * @version v0.3.1
6
6
  * @author Alexey Vasiliev
7
7
  * @homepage https://github.com/le0pard/re2js#readme
8
8
  * @repository github:le0pard/re2js
@@ -2,7 +2,7 @@
2
2
  * re2js
3
3
  * RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching
4
4
  *
5
- * @version v0.3.0
5
+ * @version v0.3.1
6
6
  * @author Alexey Vasiliev
7
7
  * @homepage https://github.com/le0pard/re2js#readme
8
8
  * @repository github:le0pard/re2js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "re2js",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -20,13 +20,13 @@
20
20
  "README.md",
21
21
  "LICENSE"
22
22
  ],
23
- "main": "build/index.cjs.js",
23
+ "main": "build/index.cjs.cjs",
24
24
  "module": "build/index.esm.js",
25
25
  "unpkg": "build/index.umd.js",
26
26
  "exports": {
27
27
  ".": {
28
28
  "import": "./build/index.esm.js",
29
- "require": "./build/index.cjs.js"
29
+ "require": "./build/index.cjs.cjs"
30
30
  }
31
31
  },
32
32
  "types": "build/index.esm.d.ts",