@autometa/config 1.0.0-rc.1 → 1.0.0-rc.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/dist/types.d.ts +4 -4
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -28,10 +28,10 @@ export interface ResolveOptions {
|
|
|
28
28
|
environment?: string;
|
|
29
29
|
/**
|
|
30
30
|
* Module selectors. Accepted forms:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
* - "<group>/<modulePath>" (exact; supports deep paths)
|
|
32
|
+
* - "<group>:<modulePath>" (exact; supports deep paths via ":" segments)
|
|
33
|
+
* - "<modulePath>" (suffix/path match, must be unambiguous; can be combined with group filters)
|
|
34
|
+
* - Examples: "orders", "orders/cancellations", "orders:cancellations"
|
|
35
35
|
*/
|
|
36
36
|
modules?: readonly string[];
|
|
37
37
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autometa/config",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"typescript": "^4.9.5",
|
|
28
28
|
"vitest": "1.4.0",
|
|
29
29
|
"eslint-config-custom": "0.6.0",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"tsup-config": "0.1.0",
|
|
31
|
+
"tsconfig": "0.7.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"zod": "^3.25.76",
|
|
35
|
-
"@autometa/errors": "1.0.0-rc.
|
|
35
|
+
"@autometa/errors": "1.0.0-rc.2"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"type-check": "tsc --noEmit -p tsconfig.dev.json",
|