@scaleway/regex 5.6.0 → 5.6.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2872](https://github.com/scaleway/scaleway-lib/pull/2872) [`5a4a5dc`](https://github.com/scaleway/scaleway-lib/commit/5a4a5dc80a8404abb7e76ed54082f5c0c8de3b0b) Thanks [@philibea](https://github.com/philibea)! - Isolated modules, better export of types generated by typescript
8
+
3
9
  ## 5.6.0
4
10
 
5
11
  ### Minor Changes
package/biome.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "root": false,
3
+ "extends": "//"
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/regex",
3
- "version": "5.6.0",
3
+ "version": "5.6.1",
4
4
  "description": "A small utility to use regex",
5
5
  "type": "module",
6
6
  "engines": {
@@ -1,10 +1,10 @@
1
1
  {
2
- "extends": "./tsconfig.json",
3
2
  "compilerOptions": {
4
- "noEmit": false,
5
3
  "emitDeclarationOnly": true,
6
- "rootDir": "src",
7
- "outDir": "dist"
4
+ "isolatedDeclarations": true,
5
+ "noEmit": false,
6
+ "outDir": "dist",
7
+ "rootDir": "src"
8
8
  },
9
9
  "exclude": [
10
10
  "*.config.ts",
@@ -12,5 +12,6 @@
12
12
  "**/__tests__",
13
13
  "**/__mocks__",
14
14
  "src/**/*.test.tsx"
15
- ]
15
+ ],
16
+ "extends": "./tsconfig.json"
16
17
  }