@scaleway/regex 2.2.0 → 2.2.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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
+ ### 2.2.2 (2022-04-05)
7
+
8
+ **Note:** Version bump only for package @scaleway/regex
9
+
10
+
11
+
12
+
13
+
14
+ ### 2.2.1 (2022-03-11)
15
+
16
+ **Note:** Version bump only for package @scaleway/regex
17
+
18
+
19
+
20
+
21
+
6
22
  ## 2.2.0 (2022-01-19)
7
23
 
8
24
 
package/README.md CHANGED
@@ -7,14 +7,13 @@ A tiny utility to use named regex
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- $ yarn add @scaleway/regex
10
+ $ pnpm add @scaleway/regex
11
11
  ```
12
12
 
13
13
  ## Usage
14
14
 
15
15
  ```js
16
- import { fourDigitsCode } from '@scaleway/regex'
16
+ import { fourDigitsCode } from '@scaleway/regex'
17
17
 
18
18
  const isFourDigit = fourDigitsCode.test('1234')
19
-
20
19
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/regex",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "description": "A small utility to use regex",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,5 +18,5 @@
18
18
  "directory": "packages/regex"
19
19
  },
20
20
  "license": "MIT",
21
- "gitHead": "2d1e948a9304197df015bc1f1734f94f36db671d"
21
+ "gitHead": "f5789858da50231e50baa15f68e757696c838a65"
22
22
  }