meemup-library 1.0.36 → 1.0.38

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.
@@ -0,0 +1,2 @@
1
+ declare const IPV4_REGX: RegExp;
2
+ export default IPV4_REGX;
@@ -0,0 +1,2 @@
1
+ const IPV4_REGX = /^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/gi;
2
+ export default IPV4_REGX;
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "build": "yarn build:esm && yarn build:cjs",
8
+ "build": "yarn build:cjs",
9
+ "build:old": "yarn build:esm && yarn build:cjs",
9
10
  "build:esm": "tsc",
10
11
  "build:cjs": "tsc --module commonjs --outDir src/dist",
11
12
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -20,4 +21,4 @@
20
21
  "dependencies": {
21
22
  "axios": "^1.5.0"
22
23
  }
23
- }
24
+ }