@tinkoff-monorepo/fix-ts-references 2.0.4 → 2.0.6

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.
Files changed (2) hide show
  1. package/lib/types.d.ts +5 -5
  2. package/package.json +2 -2
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare type Package = {
1
+ export type Package = {
2
2
  name: string;
3
3
  dependencies?: {
4
4
  [key: string]: string;
@@ -10,7 +10,7 @@ export declare type Package = {
10
10
  [key: string]: string;
11
11
  };
12
12
  };
13
- export declare type ModuleMetaInfo = {
13
+ export type ModuleMetaInfo = {
14
14
  pkg: Package;
15
15
  tsconfig: {
16
16
  compilerOptions: import('typescript').CompilerOptions;
@@ -23,7 +23,7 @@ export declare type ModuleMetaInfo = {
23
23
  pkgPath: string;
24
24
  touched?: boolean;
25
25
  };
26
- export declare type SolutionMetaInfo = {
26
+ export type SolutionMetaInfo = {
27
27
  solutionConfig: {
28
28
  references: Array<{
29
29
  path: string;
@@ -32,8 +32,8 @@ export declare type SolutionMetaInfo = {
32
32
  solutionConfigPath: string;
33
33
  touched?: boolean;
34
34
  };
35
- export declare type Messages = string[];
36
- export declare type TsConfig = {
35
+ export type Messages = string[];
36
+ export type TsConfig = {
37
37
  [key: string]: any;
38
38
  compilerOptions: {
39
39
  [key: string]: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinkoff-monorepo/fix-ts-references",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "Apache-2.0",
19
19
  "dependencies": {
20
- "@tinkoff-monorepo/pkgs-collector-workspaces": "2.0.4",
20
+ "@tinkoff-monorepo/pkgs-collector-workspaces": "2.0.6",
21
21
  "signale": "^1.4.0",
22
22
  "tslib": "^2.4.0"
23
23
  }