@theunwalked/pressurelid 1.0.0 → 1.0.2

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/README.md CHANGED
@@ -176,3 +176,5 @@ The regex continues running in the background until completion. For truly interr
176
176
 
177
177
  Apache-2.0
178
178
  TEST
179
+ TEST
180
+ TEST
@@ -296,7 +296,7 @@ function _define_property(obj, key, value) {
296
296
  return input.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
297
297
  }
298
298
 
299
- const VERSION = '1.0.0';
299
+ const VERSION = '1.0.2';
300
300
 
301
301
  exports.DEFAULT_CONFIG = DEFAULT_CONFIG;
302
302
  exports.SafeRegex = SafeRegex;
@@ -2,7 +2,7 @@ export { DEFAULT_CONFIG } from './types.js';
2
2
  export { analyzePattern, quickSafetyCheck } from './analyze.js';
3
3
  export { SafeRegex, createSafeRegex, escapeForRegex, globToSafeRegex } from './safe-regex.js';
4
4
 
5
- const VERSION = '1.0.0';
5
+ const VERSION = '1.0.2';
6
6
 
7
7
  export { VERSION };
8
8
  //# sourceMappingURL=pressurelid.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theunwalked/pressurelid",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Safe regex handling with ReDoS protection - keeps dangerous patterns under pressure.",
5
5
  "type": "module",
6
6
  "main": "./dist/pressurelid.cjs",