karakum 1.0.0-alpha.94 → 1.0.0-alpha.96
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/README.md +1 -1
- package/kotlin/karakum-types.d.ts +0 -1
- package/kotlin/karakum.d.mts +3 -4
- package/kotlin/karakum.mjs +454 -477
- package/kotlin/karakum.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ export type ReadonlyRecord<K extends PropertyKey, V> = Readonly<Record<K, V>>
|
|
|
26
26
|
export type Rule = string | ReadonlyRecord<string, string>
|
|
27
27
|
export type Tuple2<A, B> = [A, B]
|
|
28
28
|
|
|
29
|
-
export type Granularity = "bundle" | "file" | "top-level"
|
|
30
29
|
export type NamespaceStrategy = "ignore" | "object" | "package"
|
|
31
30
|
export type ConflictResolutionStrategy = "join" | "replace" | "error"
|
|
32
31
|
export type InputResolutionStrategy = "node" | "plain"
|
package/kotlin/karakum.d.mts
CHANGED
|
@@ -26,7 +26,6 @@ export type ReadonlyRecord<K extends PropertyKey, V> = Readonly<Record<K, V>>
|
|
|
26
26
|
export type Rule = string | ReadonlyRecord<string, string>
|
|
27
27
|
export type Tuple2<A, B> = [A, B]
|
|
28
28
|
|
|
29
|
-
export type Granularity = "bundle" | "file" | "top-level"
|
|
30
29
|
export type NamespaceStrategy = "ignore" | "object" | "package"
|
|
31
30
|
export type ConflictResolutionStrategy = "join" | "replace" | "error"
|
|
32
31
|
export type InputResolutionStrategy = "node" | "plain"
|
|
@@ -66,7 +65,7 @@ export declare interface SchemaConfiguration {
|
|
|
66
65
|
readonly ignoreOutput?: Nullable<Many<string>>;
|
|
67
66
|
readonly libraryName?: Nullable<string>;
|
|
68
67
|
readonly libraryNameOutputPrefix?: Nullable<boolean>;
|
|
69
|
-
readonly
|
|
68
|
+
readonly isolatedOutputPackage?: Nullable<boolean>;
|
|
70
69
|
readonly plugins?: Nullable<Many<any>>;
|
|
71
70
|
readonly injections?: Nullable<Many<any>>;
|
|
72
71
|
readonly annotations?: Nullable<Many<any>>;
|
|
@@ -105,7 +104,7 @@ export declare interface Configuration {
|
|
|
105
104
|
readonly ignoreOutput: Array<string>;
|
|
106
105
|
readonly libraryName: string;
|
|
107
106
|
readonly libraryNameOutputPrefix: boolean;
|
|
108
|
-
readonly
|
|
107
|
+
readonly isolatedOutputPackage: boolean;
|
|
109
108
|
readonly plugins: Array<Plugin>;
|
|
110
109
|
readonly injections: Array<Injection>;
|
|
111
110
|
readonly annotations: Array<(p0: Node, p1: AnnotationContext) => Nullable<string>>;
|
|
@@ -290,7 +289,7 @@ export declare namespace NameResolverService {
|
|
|
290
289
|
export declare const namespaceInfoServiceKey: { get(): ContextKey<NamespaceInfoService>; };
|
|
291
290
|
export declare class NamespaceInfoService {
|
|
292
291
|
private constructor();
|
|
293
|
-
resolveNamespaceStrategy(node: ModuleDeclaration):
|
|
292
|
+
resolveNamespaceStrategy(node: ModuleDeclaration): NamespaceStrategy;
|
|
294
293
|
}
|
|
295
294
|
export declare namespace NamespaceInfoService {
|
|
296
295
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|