@tramvai/module-router 2.152.3 → 2.153.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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
const runCommandsSpa = ({ commandLineRunner, di, }) => {
|
|
2
|
-
return async () => {
|
|
3
|
-
await commandLineRunner.run('client', 'spa', [], di);
|
|
2
|
+
return async ({ key }) => {
|
|
3
|
+
await commandLineRunner.run('client', 'spa', [], di, key);
|
|
4
4
|
};
|
|
5
5
|
};
|
|
6
6
|
const runCommandsAfterSpa = ({ commandLineRunner, di, }) => {
|
|
7
|
-
return async () => {
|
|
8
|
-
await commandLineRunner.run('client', 'afterSpa', [], di);
|
|
7
|
+
return async ({ key }) => {
|
|
8
|
+
await commandLineRunner.run('client', 'afterSpa', [], di, key);
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/module-router",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.153.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -26,27 +26,27 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@tinkoff/errors": "0.3.8",
|
|
29
|
-
"@tinkoff/router": "0.2.
|
|
29
|
+
"@tinkoff/router": "0.2.18",
|
|
30
30
|
"@tinkoff/url": "0.8.6",
|
|
31
|
-
"@tramvai/react": "2.
|
|
31
|
+
"@tramvai/react": "2.153.1",
|
|
32
32
|
"@tramvai/safe-strings": "0.5.12",
|
|
33
|
-
"@tramvai/tokens-child-app": "2.
|
|
34
|
-
"@tramvai/tokens-render": "2.
|
|
35
|
-
"@tramvai/tokens-router": "2.
|
|
36
|
-
"@tramvai/tokens-server": "2.
|
|
37
|
-
"@tramvai/experiments": "2.
|
|
33
|
+
"@tramvai/tokens-child-app": "2.153.1",
|
|
34
|
+
"@tramvai/tokens-render": "2.153.1",
|
|
35
|
+
"@tramvai/tokens-router": "2.153.1",
|
|
36
|
+
"@tramvai/tokens-server": "2.153.1",
|
|
37
|
+
"@tramvai/experiments": "2.153.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@tinkoff/utils": "^2.1.2",
|
|
41
|
-
"@tramvai/cli": "2.
|
|
42
|
-
"@tramvai/core": "2.
|
|
43
|
-
"@tramvai/module-log": "2.
|
|
44
|
-
"@tramvai/module-server": "2.
|
|
45
|
-
"@tramvai/papi": "2.
|
|
46
|
-
"@tramvai/state": "2.
|
|
47
|
-
"@tramvai/test-helpers": "2.
|
|
48
|
-
"@tramvai/test-mocks": "2.
|
|
49
|
-
"@tramvai/tokens-common": "2.
|
|
41
|
+
"@tramvai/cli": "2.153.1",
|
|
42
|
+
"@tramvai/core": "2.153.1",
|
|
43
|
+
"@tramvai/module-log": "2.153.1",
|
|
44
|
+
"@tramvai/module-server": "2.153.1",
|
|
45
|
+
"@tramvai/papi": "2.153.1",
|
|
46
|
+
"@tramvai/state": "2.153.1",
|
|
47
|
+
"@tramvai/test-helpers": "2.153.1",
|
|
48
|
+
"@tramvai/test-mocks": "2.153.1",
|
|
49
|
+
"@tramvai/tokens-common": "2.153.1",
|
|
50
50
|
"@tinkoff/dippy": "0.8.16",
|
|
51
51
|
"react": "*",
|
|
52
52
|
"tslib": "^2.4.0"
|