@tramvai/cli 2.45.0 → 2.45.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/cli",
|
|
3
|
-
"version": "2.45.
|
|
3
|
+
"version": "2.45.1",
|
|
4
4
|
"description": "Cli инструмент для сборки и запуска приложений",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@tinkoff/request-plugin-protocol-http": "^0.11.6",
|
|
70
70
|
"@tinkoff/utils": "^2.1.3",
|
|
71
71
|
"@tramvai/build": "3.0.6",
|
|
72
|
-
"@tramvai/react": "2.45.
|
|
72
|
+
"@tramvai/react": "2.45.1",
|
|
73
73
|
"@tramvai/tools-check-versions": "0.4.5",
|
|
74
74
|
"@tramvai/tools-migrate": "0.6.6",
|
|
75
75
|
"ajv": "^6.12.6",
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import type { ImageObject, SvgComponent } from '@tramvai/cli';
|
|
2
|
-
|
|
3
1
|
declare module '*.css' {
|
|
4
2
|
interface IClassNames {
|
|
5
3
|
[className: string]: string;
|
|
@@ -9,28 +7,38 @@ declare module '*.css' {
|
|
|
9
7
|
}
|
|
10
8
|
|
|
11
9
|
declare module '*.woff2' {
|
|
12
|
-
|
|
10
|
+
const font: string;
|
|
11
|
+
export = font;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
type ImageString = string;
|
|
16
15
|
|
|
17
16
|
declare module '*.png' {
|
|
17
|
+
import type { ImageObject } from '@tramvai/cli';
|
|
18
|
+
|
|
18
19
|
export default ImageString;
|
|
19
20
|
export const image: ImageObject;
|
|
20
21
|
}
|
|
21
22
|
declare module '*.jpg' {
|
|
23
|
+
import type { ImageObject } from '@tramvai/cli';
|
|
24
|
+
|
|
22
25
|
export default ImageString;
|
|
23
26
|
export const image: ImageObject;
|
|
24
27
|
}
|
|
25
28
|
declare module '*.jpeg' {
|
|
29
|
+
import type { ImageObject } from '@tramvai/cli';
|
|
30
|
+
|
|
26
31
|
export default ImageString;
|
|
27
32
|
export const image: ImageObject;
|
|
28
33
|
}
|
|
29
34
|
|
|
30
35
|
declare module '*.svg' {
|
|
31
|
-
|
|
36
|
+
const image: ImageString;
|
|
37
|
+
export = image;
|
|
32
38
|
}
|
|
33
39
|
declare module '*.svg?react' {
|
|
40
|
+
import type { SvgComponent } from '@tramvai/cli';
|
|
41
|
+
|
|
34
42
|
/**
|
|
35
43
|
* React component transformed with https://react-svgr.com/
|
|
36
44
|
*/
|