karakum 1.0.0-alpha.94 → 1.0.0-alpha.95

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 CHANGED
@@ -21,7 +21,7 @@ Gradle plugin for Kotlin Gradle projects:
21
21
 
22
22
  ```kotlin
23
23
  plugins {
24
- id("io.github.sgrishchenko.karakum") version "1.0.0-alpha.94"
24
+ id("io.github.sgrishchenko.karakum") version "1.0.0-alpha.95"
25
25
  }
26
26
  ```
27
27
 
@@ -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"
@@ -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 granularity?: Nullable<Granularity>;
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 granularity: Granularity;
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): Nullable<NamespaceStrategy>;
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 */