systemview 1.20.1 → 1.21.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/README.md +76 -40
- package/api/Connections.js +14 -0
- package/api/connections.json +1 -1
- package/api/index.js +40 -12
- package/build/asset-manifest.json +8 -6
- package/build/index.html +1 -1
- package/build/static/css/main.8e85f0c8.css +15 -0
- package/build/static/css/main.8e85f0c8.css.map +1 -0
- package/build/static/js/422.05c538a9.chunk.js +2 -0
- package/build/static/js/422.05c538a9.chunk.js.map +1 -0
- package/build/static/js/main.6240c0f1.js +3 -0
- package/build/static/js/{main.c3485d98.js.LICENSE.txt → main.6240c0f1.js.LICENSE.txt} +26 -48
- package/build/static/js/main.6240c0f1.js.map +1 -0
- package/cli/connectService.js +147 -55
- package/cli/cookieClient.js +1 -4
- package/cli/index.js +79 -25
- package/cli/launchApp.js +5 -4
- package/cli/listTests.js +15 -19
- package/cli/logs.js +251 -0
- package/cli/manifest.js +97 -0
- package/cli/probe.js +36 -19
- package/cli/runTests.js +35 -40
- package/cli/startLineReader.js +122 -13
- package/cli/utils/cli.js +59 -11
- package/package.json +3 -3
- package/testing-utilities/Test.class.js +2 -1
- package/testing-utilities/transformTests.js +7 -6
- package/build/static/css/main.3396e24d.css +0 -15
- package/build/static/css/main.3396e24d.css.map +0 -1
- package/build/static/js/main.c3485d98.js +0 -3
- package/build/static/js/main.c3485d98.js.map +0 -1
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/*!
|
|
2
8
|
* Determine if an object is a Buffer
|
|
3
9
|
*
|
|
@@ -7,7 +13,7 @@
|
|
|
7
13
|
|
|
8
14
|
/**
|
|
9
15
|
* @license React
|
|
10
|
-
* react-
|
|
16
|
+
* react-is.production.min.js
|
|
11
17
|
*
|
|
12
18
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
13
19
|
*
|
|
@@ -16,18 +22,16 @@
|
|
|
16
22
|
*/
|
|
17
23
|
|
|
18
24
|
/**
|
|
19
|
-
*
|
|
20
|
-
* react-is.production.min.js
|
|
21
|
-
*
|
|
22
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
25
|
+
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
23
26
|
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
27
|
+
* @license MIT <https://opensource.org/licenses/MIT>
|
|
28
|
+
* @author Lea Verou <https://lea.verou.me>
|
|
29
|
+
* @namespace
|
|
30
|
+
* @public
|
|
26
31
|
*/
|
|
27
32
|
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* react-jsx-runtime.production.min.js
|
|
33
|
+
/** @license React v0.20.2
|
|
34
|
+
* scheduler.production.min.js
|
|
31
35
|
*
|
|
32
36
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
33
37
|
*
|
|
@@ -35,9 +39,8 @@
|
|
|
35
39
|
* LICENSE file in the root directory of this source tree.
|
|
36
40
|
*/
|
|
37
41
|
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* react.production.min.js
|
|
42
|
+
/** @license React v16.13.1
|
|
43
|
+
* react-is.production.min.js
|
|
41
44
|
*
|
|
42
45
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
43
46
|
*
|
|
@@ -45,9 +48,8 @@
|
|
|
45
48
|
* LICENSE file in the root directory of this source tree.
|
|
46
49
|
*/
|
|
47
50
|
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* scheduler.production.min.js
|
|
51
|
+
/** @license React v17.0.2
|
|
52
|
+
* react-dom.production.min.js
|
|
51
53
|
*
|
|
52
54
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
53
55
|
*
|
|
@@ -55,46 +57,22 @@
|
|
|
55
57
|
* LICENSE file in the root directory of this source tree.
|
|
56
58
|
*/
|
|
57
59
|
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
* Copyright (c) Remix Software Inc.
|
|
62
|
-
*
|
|
63
|
-
* This source code is licensed under the MIT license found in the
|
|
64
|
-
* LICENSE.md file in the root directory of this source tree.
|
|
65
|
-
*
|
|
66
|
-
* @license MIT
|
|
67
|
-
*/
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
71
|
-
*
|
|
72
|
-
* @license MIT <https://opensource.org/licenses/MIT>
|
|
73
|
-
* @author Lea Verou <https://lea.verou.me>
|
|
74
|
-
* @namespace
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* React Router DOM v6.30.4
|
|
60
|
+
/** @license React v17.0.2
|
|
61
|
+
* react-jsx-runtime.production.min.js
|
|
80
62
|
*
|
|
81
|
-
* Copyright (c)
|
|
63
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
82
64
|
*
|
|
83
65
|
* This source code is licensed under the MIT license found in the
|
|
84
|
-
* LICENSE
|
|
85
|
-
*
|
|
86
|
-
* @license MIT
|
|
66
|
+
* LICENSE file in the root directory of this source tree.
|
|
87
67
|
*/
|
|
88
68
|
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
69
|
+
/** @license React v17.0.2
|
|
70
|
+
* react.production.min.js
|
|
91
71
|
*
|
|
92
|
-
* Copyright (c)
|
|
72
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
93
73
|
*
|
|
94
74
|
* This source code is licensed under the MIT license found in the
|
|
95
|
-
* LICENSE
|
|
96
|
-
*
|
|
97
|
-
* @license MIT
|
|
75
|
+
* LICENSE file in the root directory of this source tree.
|
|
98
76
|
*/
|
|
99
77
|
|
|
100
78
|
//! moment.js
|