@rnx-kit/cli 0.16.7 → 0.16.9
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/CHANGELOG.md +27 -0
- package/README.md +15 -6
- package/coverage/clover.xml +131 -135
- package/coverage/coverage-final.json +2 -2
- package/coverage/lcov-report/index.html +24 -24
- package/coverage/lcov-report/src/bundle/defaultPlugins.ts.html +1 -1
- package/coverage/lcov-report/src/bundle/index.html +11 -11
- package/coverage/lcov-report/src/bundle/kit-config.ts.html +1 -1
- package/coverage/lcov-report/src/bundle/metro.ts.html +33 -12
- package/coverage/lcov-report/src/bundle/overrides.ts.html +1 -1
- package/coverage/lcov-report/src/copy-assets.ts.html +44 -98
- package/coverage/lcov-report/src/index.html +19 -19
- package/coverage/lcov-report/src/metro-config.ts.html +1 -1
- package/coverage/lcov.info +246 -250
- package/lib/bundle/metro.d.ts.map +1 -1
- package/lib/bundle/metro.js +11 -5
- package/lib/bundle/metro.js.map +1 -1
- package/lib/copy-assets.d.ts +1 -0
- package/lib/copy-assets.d.ts.map +1 -1
- package/lib/copy-assets.js +24 -35
- package/lib/copy-assets.js.map +1 -1
- package/package.json +13 -13
- package/src/bundle/metro.ts +12 -5
- package/src/copy-assets.ts +25 -43
- package/test/__mocks__/fs-extra.js +2 -4
- package/test/__mocks__/fs.js +1 -0
- package/test/bundle/metro.test.ts +16 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Change Log - @rnx-kit/cli
|
|
2
2
|
|
|
3
|
+
## 0.16.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3db06445: Refactor `copy-assets` command to rely less on async fs functions
|
|
8
|
+
- 828ca15e: Add Kotlin plugin to `copy-assets` command
|
|
9
|
+
|
|
10
|
+
## 0.16.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- f1dfcf6b: Inline helper functions
|
|
15
|
+
- Updated dependencies [f1dfcf6b]
|
|
16
|
+
- Updated dependencies [f1dfcf6b]
|
|
17
|
+
- Updated dependencies [f1dfcf6b]
|
|
18
|
+
- @rnx-kit/metro-service@3.0.4
|
|
19
|
+
- @rnx-kit/tools-language@2.0.0
|
|
20
|
+
- @rnx-kit/tools-node@2.0.0
|
|
21
|
+
- @rnx-kit/align-deps@2.2.2
|
|
22
|
+
- @rnx-kit/config@0.6.2
|
|
23
|
+
- @rnx-kit/metro-plugin-cyclic-dependencies-detector@1.1.1
|
|
24
|
+
- @rnx-kit/metro-plugin-duplicates-checker@2.1.1
|
|
25
|
+
- @rnx-kit/metro-plugin-typescript@0.4.1
|
|
26
|
+
- @rnx-kit/metro-serializer-esbuild@0.1.22
|
|
27
|
+
- @rnx-kit/third-party-notices@1.3.3
|
|
28
|
+
- @rnx-kit/tools-react-native@1.3.1
|
|
29
|
+
|
|
3
30
|
## 0.16.7
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -19,12 +19,17 @@ libraries for package configuration and Metro plugins.
|
|
|
19
19
|
|
|
20
20
|
### Example Commands
|
|
21
21
|
|
|
22
|
-
```
|
|
22
|
+
```sh
|
|
23
23
|
yarn react-native rnx-bundle
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
```
|
|
27
|
-
yarn react-native rnx-bundle
|
|
26
|
+
```sh
|
|
27
|
+
yarn react-native rnx-bundle \
|
|
28
|
+
--entry-file src/index.ts \
|
|
29
|
+
--bundle-output main.jsbundle \
|
|
30
|
+
--platform ios \
|
|
31
|
+
--dev false \
|
|
32
|
+
--minify true
|
|
28
33
|
```
|
|
29
34
|
|
|
30
35
|
### Example Configuration (Optional)
|
|
@@ -112,11 +117,11 @@ libraries for package configuration and Metro plugins.
|
|
|
112
117
|
|
|
113
118
|
### Example Commands
|
|
114
119
|
|
|
115
|
-
```
|
|
120
|
+
```sh
|
|
116
121
|
yarn react-native rnx-start
|
|
117
122
|
```
|
|
118
123
|
|
|
119
|
-
```
|
|
124
|
+
```sh
|
|
120
125
|
yarn react-native rnx-start --host localhost --port 8812
|
|
121
126
|
```
|
|
122
127
|
|
|
@@ -186,7 +191,7 @@ Generate a 3rd-party notice, which is an aggregation of all the LICENSE files
|
|
|
186
191
|
from your package's dependencies.
|
|
187
192
|
|
|
188
193
|
> NOTE: A 3rd-party notice is a **legal document**. You are solely responsble
|
|
189
|
-
> for its content, even if you use
|
|
194
|
+
> for its content, even if you use this command to assist you in generating it.
|
|
190
195
|
> You should consult with an attorney to ensure your notice meets all legal
|
|
191
196
|
> requirements.
|
|
192
197
|
|
|
@@ -207,6 +212,10 @@ $ yarn react-native rnx-write-third-party-notices [options]
|
|
|
207
212
|
|
|
208
213
|
## Clean a React Native Project
|
|
209
214
|
|
|
215
|
+
> Deprecated: This command was upstreamed to `@react-native-community/cli`. As
|
|
216
|
+
> of [v8.0](https://github.com/react-native-community/cli/releases/tag/v8.0.0),
|
|
217
|
+
> you can use `react-native clean` instead.
|
|
218
|
+
|
|
210
219
|
Cleans your project by removing React Native related caches and modules.
|
|
211
220
|
|
|
212
221
|
```
|
package/coverage/clover.xml
CHANGED
|
@@ -1,161 +1,154 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1683630725844" clover="3.2.0">
|
|
3
|
+
<project timestamp="1683630725844" name="All files">
|
|
4
|
+
<metrics statements="242" coveredstatements="143" conditionals="164" coveredconditionals="88" methods="29" coveredmethods="23" elements="435" coveredelements="254" complexity="0" loc="242" ncloc="242" packages="2" files="6" classes="6"/>
|
|
5
5
|
<package name="src">
|
|
6
|
-
<metrics statements="
|
|
6
|
+
<metrics statements="211" coveredstatements="112" conditionals="141" coveredconditionals="68" methods="21" coveredmethods="15"/>
|
|
7
7
|
<file name="copy-assets.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/copy-assets.ts">
|
|
8
|
-
<metrics statements="
|
|
8
|
+
<metrics statements="143" coveredstatements="75" conditionals="99" coveredconditionals="47" methods="15" coveredmethods="11"/>
|
|
9
9
|
<line num="61" count="2" type="stmt"/>
|
|
10
|
-
<line num="
|
|
11
|
-
<line num="72" count="0" type="stmt"/>
|
|
10
|
+
<line num="72" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
12
11
|
<line num="73" count="0" type="stmt"/>
|
|
13
|
-
<line num="
|
|
14
|
-
<line num="79" count="
|
|
15
|
-
<line num="
|
|
16
|
-
<line num="82" count="
|
|
17
|
-
<line num="
|
|
18
|
-
<line num="
|
|
19
|
-
<line num="
|
|
20
|
-
<line num="
|
|
21
|
-
<line num="99" count="9" type="
|
|
22
|
-
<line num="100" count="
|
|
23
|
-
<line num="
|
|
12
|
+
<line num="74" count="0" type="stmt"/>
|
|
13
|
+
<line num="79" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
14
|
+
<line num="80" count="3" type="stmt"/>
|
|
15
|
+
<line num="82" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
16
|
+
<line num="83" count="0" type="stmt"/>
|
|
17
|
+
<line num="85" count="1" type="stmt"/>
|
|
18
|
+
<line num="89" count="4" type="stmt"/>
|
|
19
|
+
<line num="95" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
20
|
+
<line num="99" count="9" type="stmt"/>
|
|
21
|
+
<line num="100" count="9" type="cond" truecount="2" falsecount="0"/>
|
|
22
|
+
<line num="101" count="1" type="stmt"/>
|
|
24
23
|
<line num="104" count="8" type="stmt"/>
|
|
25
|
-
<line num="
|
|
26
|
-
<line num="113" count="5" type="
|
|
27
|
-
<line num="114" count="
|
|
28
|
-
<line num="
|
|
24
|
+
<line num="105" count="8" type="stmt"/>
|
|
25
|
+
<line num="113" count="5" type="stmt"/>
|
|
26
|
+
<line num="114" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
27
|
+
<line num="115" count="1" type="stmt"/>
|
|
29
28
|
<line num="118" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
30
|
-
<line num="
|
|
31
|
-
<line num="
|
|
32
|
-
<line num="
|
|
33
|
-
<line num="
|
|
29
|
+
<line num="119" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
30
|
+
<line num="121" count="4" type="cond" truecount="1" falsecount="2"/>
|
|
31
|
+
<line num="123" count="0" type="stmt"/>
|
|
32
|
+
<line num="136" count="0" type="stmt"/>
|
|
34
33
|
<line num="149" count="4" type="stmt"/>
|
|
35
|
-
<line num="
|
|
36
|
-
<line num="176" count="3" type="
|
|
37
|
-
<line num="177" count="
|
|
38
|
-
<line num="
|
|
39
|
-
<line num="187" count="
|
|
40
|
-
<line num="
|
|
34
|
+
<line num="150" count="4" type="stmt"/>
|
|
35
|
+
<line num="176" count="3" type="stmt"/>
|
|
36
|
+
<line num="177" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
37
|
+
<line num="178" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
38
|
+
<line num="187" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
39
|
+
<line num="188" count="1" type="stmt"/>
|
|
41
40
|
<line num="191" count="6" type="stmt"/>
|
|
42
|
-
<line num="
|
|
43
|
-
<line num="195" count="
|
|
41
|
+
<line num="192" count="6" type="stmt"/>
|
|
42
|
+
<line num="195" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
44
43
|
<line num="196" count="1" type="stmt"/>
|
|
45
|
-
<line num="
|
|
46
|
-
<line num="
|
|
47
|
-
<line num="205" count="
|
|
44
|
+
<line num="197" count="1" type="stmt"/>
|
|
45
|
+
<line num="200" count="5" type="stmt"/>
|
|
46
|
+
<line num="205" count="4" type="cond" truecount="4" falsecount="0"/>
|
|
48
47
|
<line num="206" count="1" type="stmt"/>
|
|
49
|
-
<line num="
|
|
48
|
+
<line num="207" count="1" type="stmt"/>
|
|
50
49
|
<line num="210" count="3" type="stmt"/>
|
|
51
|
-
<line num="
|
|
50
|
+
<line num="211" count="3" type="stmt"/>
|
|
52
51
|
<line num="218" count="3" type="stmt"/>
|
|
53
|
-
<line num="
|
|
54
|
-
<line num="
|
|
52
|
+
<line num="219" count="3" type="stmt"/>
|
|
53
|
+
<line num="221" count="3" type="stmt"/>
|
|
55
54
|
<line num="223" count="3" type="stmt"/>
|
|
56
|
-
<line num="
|
|
57
|
-
<line num="226" count="3" type="
|
|
58
|
-
<line num="227" count="
|
|
59
|
-
<line num="228" count="
|
|
55
|
+
<line num="224" count="3" type="stmt"/>
|
|
56
|
+
<line num="226" count="3" type="stmt"/>
|
|
57
|
+
<line num="227" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
58
|
+
<line num="228" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
60
59
|
<line num="229" count="0" type="stmt"/>
|
|
61
|
-
<line num="
|
|
60
|
+
<line num="230" count="0" type="stmt"/>
|
|
62
61
|
<line num="235" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
63
|
-
<line num="236" count="0" type="
|
|
62
|
+
<line num="236" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
64
63
|
<line num="237" count="0" type="stmt"/>
|
|
65
|
-
<line num="238" count="0" type="
|
|
66
|
-
<line num="239" count="0" type="
|
|
67
|
-
<line num="
|
|
68
|
-
<line num="
|
|
69
|
-
<line num="249" count="2" type="
|
|
70
|
-
<line num="250" count="
|
|
71
|
-
<line num="
|
|
72
|
-
<line num="
|
|
73
|
-
<line num="
|
|
74
|
-
<line num="
|
|
75
|
-
<line num="
|
|
76
|
-
<line num="
|
|
77
|
-
<line num="
|
|
78
|
-
<line num="
|
|
79
|
-
<line num="
|
|
80
|
-
<line num="
|
|
81
|
-
<line num="
|
|
82
|
-
<line num="
|
|
64
|
+
<line num="238" count="0" type="stmt"/>
|
|
65
|
+
<line num="239" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
66
|
+
<line num="240" count="0" type="stmt"/>
|
|
67
|
+
<line num="247" count="1" type="stmt"/>
|
|
68
|
+
<line num="249" count="2" type="stmt"/>
|
|
69
|
+
<line num="250" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
70
|
+
<line num="251" count="0" type="stmt"/>
|
|
71
|
+
<line num="254" count="2" type="stmt"/>
|
|
72
|
+
<line num="262" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
73
|
+
<line num="264" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
74
|
+
<line num="267" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
75
|
+
<line num="270" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
76
|
+
<line num="273" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
77
|
+
<line num="274" count="2" type="stmt"/>
|
|
78
|
+
<line num="279" count="2" type="stmt"/>
|
|
79
|
+
<line num="313" count="2" type="stmt"/>
|
|
80
|
+
<line num="315" count="2" type="stmt"/>
|
|
81
|
+
<line num="323" count="2" type="stmt"/>
|
|
83
82
|
<line num="324" count="2" type="stmt"/>
|
|
84
|
-
<line num="
|
|
85
|
-
<line num="
|
|
86
|
-
<line num="
|
|
87
|
-
<line num="335" count="
|
|
88
|
-
<line num="
|
|
89
|
-
<line num="
|
|
90
|
-
<line num="
|
|
91
|
-
<line num="
|
|
92
|
-
<line num="
|
|
93
|
-
<line num="
|
|
94
|
-
<line num="
|
|
95
|
-
<line num="
|
|
96
|
-
<line num="
|
|
97
|
-
<line num="
|
|
98
|
-
<line num="
|
|
99
|
-
<line num="
|
|
100
|
-
<line num="
|
|
101
|
-
<line num="
|
|
102
|
-
<line num="
|
|
103
|
-
<line num="
|
|
104
|
-
<line num="
|
|
105
|
-
<line num="
|
|
106
|
-
<line num="
|
|
83
|
+
<line num="325" count="2" type="stmt"/>
|
|
84
|
+
<line num="329" count="2" type="stmt"/>
|
|
85
|
+
<line num="332" count="2" type="stmt"/>
|
|
86
|
+
<line num="335" count="3" type="stmt"/>
|
|
87
|
+
<line num="339" count="14" type="cond" truecount="4" falsecount="0"/>
|
|
88
|
+
<line num="340" count="11" type="stmt"/>
|
|
89
|
+
<line num="343" count="3" type="stmt"/>
|
|
90
|
+
<line num="344" count="3" type="stmt"/>
|
|
91
|
+
<line num="345" count="3" type="stmt"/>
|
|
92
|
+
<line num="354" count="5" type="stmt"/>
|
|
93
|
+
<line num="359" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
94
|
+
<line num="360" count="4" type="stmt"/>
|
|
95
|
+
<line num="363" count="5" type="stmt"/>
|
|
96
|
+
<line num="370" count="1" type="stmt"/>
|
|
97
|
+
<line num="371" count="1" type="stmt"/>
|
|
98
|
+
<line num="372" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
99
|
+
<line num="373" count="1" type="stmt"/>
|
|
100
|
+
<line num="376" count="0" type="stmt"/>
|
|
101
|
+
<line num="377" count="0" type="stmt"/>
|
|
102
|
+
<line num="379" count="0" type="stmt"/>
|
|
103
|
+
<line num="380" count="0" type="stmt"/>
|
|
104
|
+
<line num="381" count="0" type="stmt"/>
|
|
105
|
+
<line num="384" count="0" type="stmt"/>
|
|
106
|
+
<line num="385" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
107
|
+
<line num="386" count="0" type="stmt"/>
|
|
108
|
+
<line num="387" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
109
|
+
<line num="388" count="0" type="stmt"/>
|
|
107
110
|
<line num="392" count="0" type="stmt"/>
|
|
108
|
-
<line num="
|
|
109
|
-
<line num="
|
|
110
|
-
<line num="396" count="0" type="stmt"/>
|
|
111
|
+
<line num="397" count="0" type="stmt"/>
|
|
112
|
+
<line num="398" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
111
113
|
<line num="399" count="0" type="stmt"/>
|
|
112
|
-
<line num="400" count="0" type="
|
|
114
|
+
<line num="400" count="0" type="stmt"/>
|
|
113
115
|
<line num="401" count="0" type="stmt"/>
|
|
114
|
-
<line num="402" count="0" type="cond" truecount="0" falsecount="
|
|
116
|
+
<line num="402" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
115
117
|
<line num="403" count="0" type="stmt"/>
|
|
116
|
-
<line num="
|
|
117
|
-
<line num="
|
|
118
|
-
<line num="
|
|
119
|
-
<line num="
|
|
120
|
-
<line num="
|
|
121
|
-
<line num="
|
|
122
|
-
<line num="
|
|
123
|
-
<line num="
|
|
124
|
-
<line num="
|
|
118
|
+
<line num="408" count="0" type="stmt"/>
|
|
119
|
+
<line num="465" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
120
|
+
<line num="466" count="0" type="stmt"/>
|
|
121
|
+
<line num="467" count="0" type="stmt"/>
|
|
122
|
+
<line num="468" count="0" type="stmt"/>
|
|
123
|
+
<line num="469" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
124
|
+
<line num="470" count="0" type="stmt"/>
|
|
125
|
+
<line num="473" count="0" type="stmt"/>
|
|
126
|
+
<line num="474" count="0" type="stmt"/>
|
|
127
|
+
<line num="475" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
128
|
+
<line num="476" count="0" type="stmt"/>
|
|
129
|
+
<line num="479" count="0" type="stmt"/>
|
|
125
130
|
<line num="480" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
126
131
|
<line num="481" count="0" type="stmt"/>
|
|
127
|
-
<line num="
|
|
132
|
+
<line num="482" count="0" type="stmt"/>
|
|
128
133
|
<line num="485" count="0" type="stmt"/>
|
|
129
|
-
<line num="486" count="0" type="
|
|
130
|
-
<line num="487" count="0" type="
|
|
134
|
+
<line num="486" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
135
|
+
<line num="487" count="0" type="stmt"/>
|
|
131
136
|
<line num="488" count="0" type="stmt"/>
|
|
137
|
+
<line num="490" count="0" type="stmt"/>
|
|
132
138
|
<line num="491" count="0" type="stmt"/>
|
|
133
|
-
<line num="
|
|
134
|
-
<line num="
|
|
135
|
-
<line num="494" count="0" type="stmt"/>
|
|
139
|
+
<line num="495" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
140
|
+
<line num="496" count="0" type="stmt"/>
|
|
136
141
|
<line num="497" count="0" type="stmt"/>
|
|
137
|
-
<line num="498" count="0" type="
|
|
142
|
+
<line num="498" count="0" type="stmt"/>
|
|
138
143
|
<line num="499" count="0" type="stmt"/>
|
|
139
|
-
<line num="
|
|
140
|
-
<line num="503" count="0" type="stmt"/>
|
|
141
|
-
<line num="504" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
142
|
-
<line num="505" count="0" type="stmt"/>
|
|
143
|
-
<line num="506" count="0" type="stmt"/>
|
|
144
|
+
<line num="504" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
144
145
|
<line num="508" count="0" type="stmt"/>
|
|
145
146
|
<line num="509" count="0" type="stmt"/>
|
|
146
|
-
<line num="
|
|
147
|
-
<line num="
|
|
148
|
-
<line num="
|
|
149
|
-
<line num="
|
|
150
|
-
<line num="
|
|
151
|
-
<line num="522" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
152
|
-
<line num="526" count="0" type="stmt"/>
|
|
153
|
-
<line num="527" count="0" type="stmt"/>
|
|
154
|
-
<line num="530" count="0" type="stmt"/>
|
|
155
|
-
<line num="534" count="2" type="stmt"/>
|
|
156
|
-
<line num="539" count="0" type="stmt"/>
|
|
157
|
-
<line num="540" count="0" type="stmt"/>
|
|
158
|
-
<line num="541" count="0" type="stmt"/>
|
|
147
|
+
<line num="512" count="0" type="stmt"/>
|
|
148
|
+
<line num="516" count="2" type="stmt"/>
|
|
149
|
+
<line num="521" count="0" type="stmt"/>
|
|
150
|
+
<line num="522" count="0" type="stmt"/>
|
|
151
|
+
<line num="523" count="0" type="stmt"/>
|
|
159
152
|
</file>
|
|
160
153
|
<file name="metro-config.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/metro-config.ts">
|
|
161
154
|
<metrics statements="68" coveredstatements="37" conditionals="42" coveredconditionals="21" methods="6" coveredmethods="4"/>
|
|
@@ -230,7 +223,7 @@
|
|
|
230
223
|
</file>
|
|
231
224
|
</package>
|
|
232
225
|
<package name="src.bundle">
|
|
233
|
-
<metrics statements="
|
|
226
|
+
<metrics statements="31" coveredstatements="31" conditionals="23" coveredconditionals="20" methods="8" coveredmethods="8"/>
|
|
234
227
|
<file name="defaultPlugins.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/bundle/defaultPlugins.ts">
|
|
235
228
|
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
236
229
|
<line num="5" count="3" type="stmt"/>
|
|
@@ -254,14 +247,17 @@
|
|
|
254
247
|
<line num="74" count="10" type="stmt"/>
|
|
255
248
|
</file>
|
|
256
249
|
<file name="metro.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/bundle/metro.ts">
|
|
257
|
-
<metrics statements="
|
|
258
|
-
<line num="
|
|
259
|
-
<line num="
|
|
260
|
-
<line num="
|
|
261
|
-
<line num="
|
|
262
|
-
<line num="
|
|
263
|
-
<line num="
|
|
250
|
+
<metrics statements="10" coveredstatements="10" conditionals="7" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
251
|
+
<line num="11" count="12" type="stmt"/>
|
|
252
|
+
<line num="33" count="4" type="stmt"/>
|
|
253
|
+
<line num="35" count="4" type="stmt"/>
|
|
254
|
+
<line num="40" count="4" type="stmt"/>
|
|
255
|
+
<line num="47" count="4" type="stmt"/>
|
|
256
|
+
<line num="48" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
264
257
|
<line num="49" count="4" type="stmt"/>
|
|
258
|
+
<line num="51" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
259
|
+
<line num="52" count="4" type="stmt"/>
|
|
260
|
+
<line num="56" count="4" type="stmt"/>
|
|
265
261
|
</file>
|
|
266
262
|
<file name="overrides.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/bundle/overrides.ts">
|
|
267
263
|
<metrics statements="5" coveredstatements="5" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
|