@weavix/cli 0.6.0 → 0.7.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/build/index.js
CHANGED
|
@@ -331,7 +331,7 @@ var TRACKER_BASE_URL, PLATFORM_BASE_URL, OAUTH_TOKEN_URL, init_hosts = __esm({
|
|
|
331
331
|
"src/distributions/external/hosts.ts"() {
|
|
332
332
|
"use strict";
|
|
333
333
|
init_manager();
|
|
334
|
-
TRACKER_BASE_URL = "https://api.tracker.yandex.net/v3", PLATFORM_BASE_URL = "https://plugins-
|
|
334
|
+
TRACKER_BASE_URL = "https://api.tracker.yandex.net/v3", PLATFORM_BASE_URL = "https://plugins.cli-api.tracker.yandex.net", OAUTH_TOKEN_URL = "https://oauth.yandex.ru/authorize?response_type=token&client_id=f57901dffe3849cbb3dbb5f616158e28";
|
|
335
335
|
}
|
|
336
336
|
});
|
|
337
337
|
|
|
@@ -1,55 +1,74 @@
|
|
|
1
1
|
/* Minimal CSS Reset */
|
|
2
2
|
|
|
3
3
|
html {
|
|
4
|
-
|
|
5
|
-
-webkit-text-size-adjust: 100%;
|
|
4
|
+
line-height: 1.15;
|
|
6
5
|
}
|
|
7
6
|
|
|
8
7
|
body {
|
|
9
|
-
|
|
8
|
+
margin: 0;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
|
-
h1,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
h1,
|
|
12
|
+
h2,
|
|
13
|
+
h3,
|
|
14
|
+
h4,
|
|
15
|
+
h5,
|
|
16
|
+
h6,
|
|
17
|
+
p,
|
|
18
|
+
blockquote,
|
|
19
|
+
pre,
|
|
20
|
+
figure,
|
|
21
|
+
dl,
|
|
22
|
+
dd,
|
|
23
|
+
ul,
|
|
24
|
+
ol {
|
|
25
|
+
margin: 0;
|
|
26
|
+
padding: 0;
|
|
19
27
|
}
|
|
20
28
|
|
|
21
|
-
ul,
|
|
22
|
-
|
|
29
|
+
ul,
|
|
30
|
+
ol {
|
|
31
|
+
list-style: none;
|
|
23
32
|
}
|
|
24
33
|
|
|
25
|
-
img,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
34
|
+
img,
|
|
35
|
+
svg,
|
|
36
|
+
video,
|
|
37
|
+
canvas,
|
|
38
|
+
audio,
|
|
39
|
+
iframe,
|
|
40
|
+
embed,
|
|
41
|
+
object {
|
|
42
|
+
display: block;
|
|
29
43
|
}
|
|
30
44
|
|
|
31
|
-
img,
|
|
32
|
-
|
|
33
|
-
|
|
45
|
+
img,
|
|
46
|
+
video {
|
|
47
|
+
max-width: 100%;
|
|
48
|
+
height: auto;
|
|
34
49
|
}
|
|
35
50
|
|
|
36
|
-
button,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
51
|
+
button,
|
|
52
|
+
input,
|
|
53
|
+
optgroup,
|
|
54
|
+
select,
|
|
55
|
+
textarea {
|
|
56
|
+
font-family: inherit;
|
|
57
|
+
font-size: 100%;
|
|
58
|
+
line-height: 1.15;
|
|
59
|
+
margin: 0;
|
|
42
60
|
}
|
|
43
61
|
|
|
44
62
|
button {
|
|
45
|
-
|
|
63
|
+
cursor: pointer;
|
|
46
64
|
}
|
|
47
65
|
|
|
48
66
|
table {
|
|
49
|
-
|
|
50
|
-
|
|
67
|
+
border-collapse: collapse;
|
|
68
|
+
border-spacing: 0;
|
|
51
69
|
}
|
|
52
70
|
|
|
53
|
-
td,
|
|
54
|
-
|
|
71
|
+
td,
|
|
72
|
+
th {
|
|
73
|
+
padding: 0;
|
|
55
74
|
}
|
|
@@ -7,6 +7,7 @@ import react from '@vitejs/plugin-react';
|
|
|
7
7
|
import type { ViteDevServer } from 'vite';
|
|
8
8
|
import { defineConfig } from 'vite';
|
|
9
9
|
import svgr from 'vite-plugin-svgr';
|
|
10
|
+
|
|
10
11
|
import { proxyPlugin } from './proxy';
|
|
11
12
|
|
|
12
13
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|