@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 +6 -0
- package/biome.json +4 -0
- package/package.json +1 -1
- package/tsconfig.build.json +6 -5
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
package/package.json
CHANGED
package/tsconfig.build.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
2
|
"compilerOptions": {
|
|
4
|
-
"noEmit": false,
|
|
5
3
|
"emitDeclarationOnly": true,
|
|
6
|
-
"
|
|
7
|
-
"
|
|
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
|
}
|