@tramvai/tools-migrate 0.6.5 → 0.6.7

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 +8 -8
  2. package/package.json +3 -3
package/lib/types.d.ts CHANGED
@@ -22,19 +22,19 @@ export interface FileInfo<T> {
22
22
  originSource: T;
23
23
  originPath: string;
24
24
  }
25
- export declare type JsonFileInfo = FileInfo<Record<string, any>>;
26
- export declare type SourceFileInfo = FileInfo<string>;
27
- export declare type SourceFilesInfo = Record<string, SourceFileInfo>;
28
- export declare type JsonFilesInfo = Record<string, JsonFileInfo>;
29
- export declare type Transformer = Transform;
30
- export declare type PathTransformer = (file: FileInfo<any>) => string;
31
- export declare type PackageJSON = {
25
+ export type JsonFileInfo = FileInfo<Record<string, any>>;
26
+ export type SourceFileInfo = FileInfo<string>;
27
+ export type SourceFilesInfo = Record<string, SourceFileInfo>;
28
+ export type JsonFilesInfo = Record<string, JsonFileInfo>;
29
+ export type Transformer = Transform;
30
+ export type PathTransformer = (file: FileInfo<any>) => string;
31
+ export type PackageJSON = {
32
32
  dependencies?: Record<string, string>;
33
33
  devDependencies?: Record<string, string>;
34
34
  peerDependencies?: Record<string, string>;
35
35
  [key: string]: any;
36
36
  };
37
- export declare type TramvaiJSON = {
37
+ export type TramvaiJSON = {
38
38
  projectsConfig?: any;
39
39
  $schema?: string;
40
40
  projects: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/tools-migrate",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -12,8 +12,8 @@
12
12
  "author": "",
13
13
  "license": "Apache-2.0",
14
14
  "dependencies": {
15
- "@tinkoff/logger": "0.10.53",
16
- "@tinkoff/package-manager-wrapper": "0.1.3",
15
+ "@tinkoff/logger": "0.10.55",
16
+ "@tinkoff/package-manager-wrapper": "0.1.4",
17
17
  "@tinkoff/utils": "^2.1.2",
18
18
  "env-ci": "^5.0.2",
19
19
  "fast-glob": "^3.2.2",