regex-is-jsp 3.1.5 → 4.0.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 4.0.0 (2022-12-01)
7
+
8
+ ### Features
9
+
10
+ - drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ - Minimum supported Node version is v14.18; we're dropping v12 support
15
+
6
16
  # 3.1.0 (2022-08-12)
7
17
 
8
18
  ### Features
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * @name regex-is-jsp
3
3
  * @fileoverview Regular expression for detecting JSP (Java Server Pages) code
4
- * @version 3.1.5
4
+ * @version 4.0.0
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/regex-is-jsp/}
8
8
  */
9
9
 
10
- var e="3.1.5";var n=e;function i(){return/<%|%>|<\s*jsp:|<\s*cms:|<\s*c:|\${\s*jsp/gi}export{i as isJSP,n as version};
10
+ var e="4.0.0";var n=e;function i(){return/<%|%>|<\s*jsp:|<\s*cms:|<\s*c:|\${\s*jsp/gi}export{i as isJSP,n as version};
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * @name regex-is-jsp
3
3
  * @fileoverview Regular expression for detecting JSP (Java Server Pages) code
4
- * @version 3.1.5
4
+ * @version 4.0.0
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/regex-is-jsp/}
8
8
  */
9
9
 
10
- "use strict";var regexIsJsp=(()=>{var n=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var u=(s,e)=>{for(var r in e)n(s,r,{get:e[r],enumerable:!0})},a=(s,e,r,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of c(e))!d.call(s,t)&&t!==r&&n(s,t,{get:()=>e[t],enumerable:!(i=p(e,t))||i.enumerable});return s};var l=s=>a(n({},"__esModule",{value:!0}),s);var m={};u(m,{isJSP:()=>g,version:()=>y});var o="3.1.5";var y=o;function g(){return/<%|%>|<\s*jsp:|<\s*cms:|<\s*c:|\${\s*jsp/gi}return l(m);})();
10
+ "use strict";var regexIsJsp=(()=>{var n=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var u=(s,e)=>{for(var r in e)n(s,r,{get:e[r],enumerable:!0})},a=(s,e,r,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of c(e))!d.call(s,t)&&t!==r&&n(s,t,{get:()=>e[t],enumerable:!(i=p(e,t))||i.enumerable});return s};var l=s=>a(n({},"__esModule",{value:!0}),s);var m={};u(m,{isJSP:()=>g,version:()=>y});var o="4.0.0";var y=o;function g(){return/<%|%>|<\s*jsp:|<\s*cms:|<\s*c:|\${\s*jsp/gi}return l(m);})();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "regex-is-jsp",
3
- "version": "3.1.5",
3
+ "version": "4.0.0",
4
4
  "description": "Regular expression for detecting JSP (Java Server Pages) code",
5
5
  "keywords": [
6
6
  "code",
@@ -57,7 +57,7 @@
57
57
  "unit": "uvu test"
58
58
  },
59
59
  "engines": {
60
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
60
+ "node": ">=14.18.0"
61
61
  },
62
62
  "c8": {
63
63
  "check-coverage": true,