@tramvai/tokens-core 4.18.5 → 4.19.0
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/lib/command.d.ts +1 -0
- package/package.json +3 -3
package/lib/command.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type Command = () => any;
|
|
|
3
3
|
export interface CommandLineRunner {
|
|
4
4
|
lines: CommandLines;
|
|
5
5
|
run(type: keyof CommandLines, status: keyof CommandLineDescription, providers?: Provider[], customDi?: Container, key?: string | number): Promise<Container>;
|
|
6
|
+
resolveDi(type: keyof CommandLines, status: keyof CommandLineDescription, rootDi: Container, providers?: Provider[]): Container;
|
|
6
7
|
}
|
|
7
8
|
export type CommandLineDescription = Record<string, MultiTokenInterface<Command>[]>;
|
|
8
9
|
export type CommandLines = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/tokens-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.19.0",
|
|
4
4
|
"description": "Tramvai core tokens",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.es.js",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"watch": "tsc -w"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@tramvai/types-actions-state-context": "4.
|
|
21
|
+
"@tramvai/types-actions-state-context": "4.19.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@tinkoff/dippy": "0.10.
|
|
24
|
+
"@tinkoff/dippy": "0.10.7",
|
|
25
25
|
"tslib": "^2.4.0"
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0"
|