@michijs/dev-server 0.5.4 → 0.5.5
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/LICENSE.md +8 -8
- package/README.md +229 -229
- package/bin/actions/start.js +5 -5
- package/bin/cli.js +1 -1
- package/bin/config/config.d.ts +2 -18
- package/bin/tsconfig.tsbuildinfo +1 -1
- package/bin/utils/serviceWorkerTransformer.d.ts +1 -0
- package/feature-image-template.svg +56 -56
- package/package.json +64 -64
package/LICENSE.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021-present, michijs
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021-present, michijs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
9
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,229 +1,229 @@
|
|
|
1
|
-
# Michijs Dev Server
|
|
2
|
-
Development server built on top of esbuild.
|
|
3
|
-
<!-- TODO: To generate feature-image require to install roboto -->
|
|
4
|
-
|
|
5
|
-
![npm][version] [![license][github-license]][github-license-url] ![npm][npm-downloads] ![npm][repo-size]
|
|
6
|
-
[](https://github.com/michijs/dev-server/actions/workflows/codeql-analysis.yml)
|
|
7
|
-
[](https://github.com/michijs/dev-server/actions/workflows/tests.yml)
|
|
8
|
-
|
|
9
|
-
## Main features
|
|
10
|
-
- Configure esbuild options with Typescript
|
|
11
|
-
- First-class PWA support
|
|
12
|
-
- Custom environments
|
|
13
|
-
- Packages distribution
|
|
14
|
-
|
|
15
|
-
## Getting started
|
|
16
|
-
|
|
17
|
-
You can use the following [test project](https://github.com/michijs/michijs-template) or setup a project from scratch:
|
|
18
|
-
|
|
19
|
-
npm install -D @michijs/dev-server
|
|
20
|
-
|
|
21
|
-
## CLI commands
|
|
22
|
-
You have the following CLI commands:
|
|
23
|
-
<table>
|
|
24
|
-
<thead>
|
|
25
|
-
<tr>
|
|
26
|
-
<th>CLI command</th>
|
|
27
|
-
<th>Default environment</th>
|
|
28
|
-
<th>Description</th>
|
|
29
|
-
</tr>
|
|
30
|
-
</thead>
|
|
31
|
-
<tbody>
|
|
32
|
-
<tr>
|
|
33
|
-
<td>start</td>
|
|
34
|
-
<td>DEVELOPMENT</td>
|
|
35
|
-
<td>Allows to start a dev server as a webpage.</td>
|
|
36
|
-
</tr>
|
|
37
|
-
<tr>
|
|
38
|
-
<td>build</td>
|
|
39
|
-
<td>PRODUCTION</td>
|
|
40
|
-
<td>Allows to build the src code as a webpage.</td>
|
|
41
|
-
</tr>
|
|
42
|
-
<tr>
|
|
43
|
-
<td>dist</td>
|
|
44
|
-
<td>DISTRIBUTION</td>
|
|
45
|
-
<td>Allows to distribute the src code as a package. At the moment ESBuild does not support .d.ts files so we still use the Typescript compiler with the tsconfig provided by esbuildOptions field.</td>
|
|
46
|
-
</tr>
|
|
47
|
-
<tr>
|
|
48
|
-
<td>generate-icons</td>
|
|
49
|
-
<td>-</td>
|
|
50
|
-
<td>Allows to generate a full set of icons from a src icon.</td>
|
|
51
|
-
</tr>
|
|
52
|
-
</tbody>
|
|
53
|
-
</table>
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
## Configure the server
|
|
57
|
-
To configure the server you just need to create an optional file called michi.config.ts at the root of your project. This file would look like this:
|
|
58
|
-
|
|
59
|
-
```ts
|
|
60
|
-
import { ServerConfig, ServerConfigFactory, DefaultEnvironment } from '@michijs/server';
|
|
61
|
-
|
|
62
|
-
export const config: ServerConfigFactory = (environment) => {
|
|
63
|
-
const defaultConfig: ServerConfig = {
|
|
64
|
-
// Your custom configuration
|
|
65
|
-
}
|
|
66
|
-
return defaultConfig;
|
|
67
|
-
};
|
|
68
|
-
|
|
69
|
-
export default config;
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
<table>
|
|
73
|
-
<thead>
|
|
74
|
-
<tr>
|
|
75
|
-
<th colspan="4">ServerConfig</th>
|
|
76
|
-
<th>Default value</th>
|
|
77
|
-
</tr>
|
|
78
|
-
</thead>
|
|
79
|
-
<tbody>
|
|
80
|
-
<tr>
|
|
81
|
-
<td>env</td>
|
|
82
|
-
<td colspan="3">Allows to add environment variables</td>
|
|
83
|
-
<td></td>
|
|
84
|
-
</tr>
|
|
85
|
-
<tr>
|
|
86
|
-
<td>esbuildOptions</td>
|
|
87
|
-
<td colspan="3">All the options available at <a href="https://esbuild.github.io/plugins/#build-options">esbuild documentation</a></td>
|
|
88
|
-
<td>Can be chequed <a href="#esbuild-default-options">here</a></td>
|
|
89
|
-
</tr>
|
|
90
|
-
<tr>
|
|
91
|
-
<td>openBrowser</td>
|
|
92
|
-
<td colspan="3">If the browser should open at localhost url when server starts</td>
|
|
93
|
-
<td>"true"</td>
|
|
94
|
-
</tr>
|
|
95
|
-
<tr>
|
|
96
|
-
<td>watch</td>
|
|
97
|
-
<td colspan="3">If the server should watch for changes on the folders</td>
|
|
98
|
-
<td>"true"</td>
|
|
99
|
-
</tr>
|
|
100
|
-
<tr>
|
|
101
|
-
<td>port</td>
|
|
102
|
-
<td colspan="3">Port to run dev server on</td>
|
|
103
|
-
<td>"3000"</td>
|
|
104
|
-
</tr>
|
|
105
|
-
<tr>
|
|
106
|
-
<td rowspan="14">public</td>
|
|
107
|
-
<td rowspan="14">Public folder - will be copied at server start</td>
|
|
108
|
-
<tr>
|
|
109
|
-
<td rowspan="4">assets</td>
|
|
110
|
-
<tr>
|
|
111
|
-
<td>path</td>
|
|
112
|
-
<td>"assets"</td>
|
|
113
|
-
</tr>
|
|
114
|
-
<tr>
|
|
115
|
-
<td>screenshots</td>
|
|
116
|
-
<td></td>
|
|
117
|
-
</tr>
|
|
118
|
-
<tr>
|
|
119
|
-
<td>featureImage</td>
|
|
120
|
-
<td></td>
|
|
121
|
-
</tr>
|
|
122
|
-
</tr>
|
|
123
|
-
<tr>
|
|
124
|
-
<td colspan="2">indexName</td>
|
|
125
|
-
<td>"index.html"</td>
|
|
126
|
-
</tr>
|
|
127
|
-
<tr>
|
|
128
|
-
<td colspan="2">minify</td>
|
|
129
|
-
<td>"true" if environment is PRODUCTION</td>
|
|
130
|
-
</tr>
|
|
131
|
-
<tr>
|
|
132
|
-
<td colspan="2">path</td>
|
|
133
|
-
<td>"public"</td>
|
|
134
|
-
</tr>
|
|
135
|
-
<tr>
|
|
136
|
-
<td rowspan="3">manifest <br/><small>(A JSON document that contains startup parameters and application defaults for when a web application is launched.)</small></td>
|
|
137
|
-
<tr>
|
|
138
|
-
<td>name</td>
|
|
139
|
-
<td>"manifest.json"</td>
|
|
140
|
-
</tr>
|
|
141
|
-
<tr>
|
|
142
|
-
<td>options</td>
|
|
143
|
-
<td></td>
|
|
144
|
-
</tr>
|
|
145
|
-
</tr>
|
|
146
|
-
<tr>
|
|
147
|
-
<td rowspan="3">wellKnown <br/><small>(A URI with the path component /.well-known/assetlinks.json is used by the AssetLinks protocol to identify one or more digital assets (such as web sites or mobile apps) that are related to the hosting web site in some fashion.)</small></td>
|
|
148
|
-
<tr>
|
|
149
|
-
<td>relation</td>
|
|
150
|
-
<td></td>
|
|
151
|
-
</tr>
|
|
152
|
-
<tr>
|
|
153
|
-
<td>target</td>
|
|
154
|
-
<td></td>
|
|
155
|
-
</tr>
|
|
156
|
-
</tr>
|
|
157
|
-
</tr>
|
|
158
|
-
</tbody>
|
|
159
|
-
</table>
|
|
160
|
-
|
|
161
|
-
## Esbuild default options
|
|
162
|
-
|
|
163
|
-
<table>
|
|
164
|
-
<thead>
|
|
165
|
-
<tr>
|
|
166
|
-
<th>Field</th>
|
|
167
|
-
<th>Default value</th>
|
|
168
|
-
</tr>
|
|
169
|
-
</thead>
|
|
170
|
-
<tbody>
|
|
171
|
-
<tr>
|
|
172
|
-
<td>bundle</td>
|
|
173
|
-
<td>"true"</td>
|
|
174
|
-
</tr>
|
|
175
|
-
<tr>
|
|
176
|
-
<td>entryPoints</td>
|
|
177
|
-
<td>['src/index.ts']</td>
|
|
178
|
-
</tr>
|
|
179
|
-
<tr>
|
|
180
|
-
<td>format</td>
|
|
181
|
-
<td>"esm"</td>
|
|
182
|
-
</tr>
|
|
183
|
-
<tr>
|
|
184
|
-
<td>keepNames</td>
|
|
185
|
-
<td>"true" if environment is PRODUCTION</td>
|
|
186
|
-
</tr>
|
|
187
|
-
<tr>
|
|
188
|
-
<td>logLevel</td>
|
|
189
|
-
<td>"error"</td>
|
|
190
|
-
</tr>
|
|
191
|
-
<tr>
|
|
192
|
-
<td>minifySyntax</td>
|
|
193
|
-
<td>"true" if environment is PRODUCTION</td>
|
|
194
|
-
</tr>
|
|
195
|
-
<tr>
|
|
196
|
-
<td>minifyWhitespace</td>
|
|
197
|
-
<td>"true" if environment is PRODUCTION</td>
|
|
198
|
-
</tr>
|
|
199
|
-
<tr>
|
|
200
|
-
<td>outdir</td>
|
|
201
|
-
<td>"build"</td>
|
|
202
|
-
</tr>
|
|
203
|
-
<tr>
|
|
204
|
-
<td>sourcemap</td>
|
|
205
|
-
<td>"true" if environment is <b>NOT</b> PRODUCTION</td>
|
|
206
|
-
</tr>
|
|
207
|
-
<tr>
|
|
208
|
-
<td>splitting</td>
|
|
209
|
-
<td>"true"</td>
|
|
210
|
-
</tr>
|
|
211
|
-
<tr>
|
|
212
|
-
<td>target</td>
|
|
213
|
-
<td>"esnext"</td>
|
|
214
|
-
</tr>
|
|
215
|
-
<tr>
|
|
216
|
-
<td>tsconfig</td>
|
|
217
|
-
<td>"tsconfig.json"</td>
|
|
218
|
-
</tr>
|
|
219
|
-
</tbody>
|
|
220
|
-
</table>
|
|
221
|
-
|
|
222
|
-
## License
|
|
223
|
-
- [MIT](https://github.com/michijs/dev-server/blob/master/LICENSE.md)
|
|
224
|
-
|
|
225
|
-
[repo-size]: https://img.shields.io/github/repo-size/michijs/dev-server
|
|
226
|
-
[npm-downloads]: https://img.shields.io/npm/dt/@michijs/dev-server
|
|
227
|
-
[version]: https://img.shields.io/npm/v/@michijs/dev-server
|
|
228
|
-
[github-license]: https://img.shields.io/github/license/michijs/dev-server
|
|
229
|
-
[github-license-url]: https://github.com/michijs/dev-server/blob/master/LICENSE.md
|
|
1
|
+
# Michijs Dev Server
|
|
2
|
+
Development server built on top of esbuild.
|
|
3
|
+
<!-- TODO: To generate feature-image require to install roboto -->
|
|
4
|
+
|
|
5
|
+
![npm][version] [![license][github-license]][github-license-url] ![npm][npm-downloads] ![npm][repo-size]
|
|
6
|
+
[](https://github.com/michijs/dev-server/actions/workflows/codeql-analysis.yml)
|
|
7
|
+
[](https://github.com/michijs/dev-server/actions/workflows/tests.yml)
|
|
8
|
+
|
|
9
|
+
## Main features
|
|
10
|
+
- Configure esbuild options with Typescript
|
|
11
|
+
- First-class PWA support
|
|
12
|
+
- Custom environments
|
|
13
|
+
- Packages distribution
|
|
14
|
+
|
|
15
|
+
## Getting started
|
|
16
|
+
|
|
17
|
+
You can use the following [test project](https://github.com/michijs/michijs-template) or setup a project from scratch:
|
|
18
|
+
|
|
19
|
+
npm install -D @michijs/dev-server
|
|
20
|
+
|
|
21
|
+
## CLI commands
|
|
22
|
+
You have the following CLI commands:
|
|
23
|
+
<table>
|
|
24
|
+
<thead>
|
|
25
|
+
<tr>
|
|
26
|
+
<th>CLI command</th>
|
|
27
|
+
<th>Default environment</th>
|
|
28
|
+
<th>Description</th>
|
|
29
|
+
</tr>
|
|
30
|
+
</thead>
|
|
31
|
+
<tbody>
|
|
32
|
+
<tr>
|
|
33
|
+
<td>start</td>
|
|
34
|
+
<td>DEVELOPMENT</td>
|
|
35
|
+
<td>Allows to start a dev server as a webpage.</td>
|
|
36
|
+
</tr>
|
|
37
|
+
<tr>
|
|
38
|
+
<td>build</td>
|
|
39
|
+
<td>PRODUCTION</td>
|
|
40
|
+
<td>Allows to build the src code as a webpage.</td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td>dist</td>
|
|
44
|
+
<td>DISTRIBUTION</td>
|
|
45
|
+
<td>Allows to distribute the src code as a package. At the moment ESBuild does not support .d.ts files so we still use the Typescript compiler with the tsconfig provided by esbuildOptions field.</td>
|
|
46
|
+
</tr>
|
|
47
|
+
<tr>
|
|
48
|
+
<td>generate-icons</td>
|
|
49
|
+
<td>-</td>
|
|
50
|
+
<td>Allows to generate a full set of icons from a src icon.</td>
|
|
51
|
+
</tr>
|
|
52
|
+
</tbody>
|
|
53
|
+
</table>
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
## Configure the server
|
|
57
|
+
To configure the server you just need to create an optional file called michi.config.ts at the root of your project. This file would look like this:
|
|
58
|
+
|
|
59
|
+
```ts
|
|
60
|
+
import { ServerConfig, ServerConfigFactory, DefaultEnvironment } from '@michijs/server';
|
|
61
|
+
|
|
62
|
+
export const config: ServerConfigFactory = (environment) => {
|
|
63
|
+
const defaultConfig: ServerConfig = {
|
|
64
|
+
// Your custom configuration
|
|
65
|
+
}
|
|
66
|
+
return defaultConfig;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export default config;
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
<table>
|
|
73
|
+
<thead>
|
|
74
|
+
<tr>
|
|
75
|
+
<th colspan="4">ServerConfig</th>
|
|
76
|
+
<th>Default value</th>
|
|
77
|
+
</tr>
|
|
78
|
+
</thead>
|
|
79
|
+
<tbody>
|
|
80
|
+
<tr>
|
|
81
|
+
<td>env</td>
|
|
82
|
+
<td colspan="3">Allows to add environment variables</td>
|
|
83
|
+
<td></td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>esbuildOptions</td>
|
|
87
|
+
<td colspan="3">All the options available at <a href="https://esbuild.github.io/plugins/#build-options">esbuild documentation</a></td>
|
|
88
|
+
<td>Can be chequed <a href="#esbuild-default-options">here</a></td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td>openBrowser</td>
|
|
92
|
+
<td colspan="3">If the browser should open at localhost url when server starts</td>
|
|
93
|
+
<td>"true"</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td>watch</td>
|
|
97
|
+
<td colspan="3">If the server should watch for changes on the folders</td>
|
|
98
|
+
<td>"true"</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<td>port</td>
|
|
102
|
+
<td colspan="3">Port to run dev server on</td>
|
|
103
|
+
<td>"3000"</td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tr>
|
|
106
|
+
<td rowspan="14">public</td>
|
|
107
|
+
<td rowspan="14">Public folder - will be copied at server start</td>
|
|
108
|
+
<tr>
|
|
109
|
+
<td rowspan="4">assets</td>
|
|
110
|
+
<tr>
|
|
111
|
+
<td>path</td>
|
|
112
|
+
<td>"assets"</td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td>screenshots</td>
|
|
116
|
+
<td></td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr>
|
|
119
|
+
<td>featureImage</td>
|
|
120
|
+
<td></td>
|
|
121
|
+
</tr>
|
|
122
|
+
</tr>
|
|
123
|
+
<tr>
|
|
124
|
+
<td colspan="2">indexName</td>
|
|
125
|
+
<td>"index.html"</td>
|
|
126
|
+
</tr>
|
|
127
|
+
<tr>
|
|
128
|
+
<td colspan="2">minify</td>
|
|
129
|
+
<td>"true" if environment is PRODUCTION</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td colspan="2">path</td>
|
|
133
|
+
<td>"public"</td>
|
|
134
|
+
</tr>
|
|
135
|
+
<tr>
|
|
136
|
+
<td rowspan="3">manifest <br/><small>(A JSON document that contains startup parameters and application defaults for when a web application is launched.)</small></td>
|
|
137
|
+
<tr>
|
|
138
|
+
<td>name</td>
|
|
139
|
+
<td>"manifest.json"</td>
|
|
140
|
+
</tr>
|
|
141
|
+
<tr>
|
|
142
|
+
<td>options</td>
|
|
143
|
+
<td></td>
|
|
144
|
+
</tr>
|
|
145
|
+
</tr>
|
|
146
|
+
<tr>
|
|
147
|
+
<td rowspan="3">wellKnown <br/><small>(A URI with the path component /.well-known/assetlinks.json is used by the AssetLinks protocol to identify one or more digital assets (such as web sites or mobile apps) that are related to the hosting web site in some fashion.)</small></td>
|
|
148
|
+
<tr>
|
|
149
|
+
<td>relation</td>
|
|
150
|
+
<td></td>
|
|
151
|
+
</tr>
|
|
152
|
+
<tr>
|
|
153
|
+
<td>target</td>
|
|
154
|
+
<td></td>
|
|
155
|
+
</tr>
|
|
156
|
+
</tr>
|
|
157
|
+
</tr>
|
|
158
|
+
</tbody>
|
|
159
|
+
</table>
|
|
160
|
+
|
|
161
|
+
## Esbuild default options
|
|
162
|
+
|
|
163
|
+
<table>
|
|
164
|
+
<thead>
|
|
165
|
+
<tr>
|
|
166
|
+
<th>Field</th>
|
|
167
|
+
<th>Default value</th>
|
|
168
|
+
</tr>
|
|
169
|
+
</thead>
|
|
170
|
+
<tbody>
|
|
171
|
+
<tr>
|
|
172
|
+
<td>bundle</td>
|
|
173
|
+
<td>"true"</td>
|
|
174
|
+
</tr>
|
|
175
|
+
<tr>
|
|
176
|
+
<td>entryPoints</td>
|
|
177
|
+
<td>['src/index.ts']</td>
|
|
178
|
+
</tr>
|
|
179
|
+
<tr>
|
|
180
|
+
<td>format</td>
|
|
181
|
+
<td>"esm"</td>
|
|
182
|
+
</tr>
|
|
183
|
+
<tr>
|
|
184
|
+
<td>keepNames</td>
|
|
185
|
+
<td>"true" if environment is PRODUCTION</td>
|
|
186
|
+
</tr>
|
|
187
|
+
<tr>
|
|
188
|
+
<td>logLevel</td>
|
|
189
|
+
<td>"error"</td>
|
|
190
|
+
</tr>
|
|
191
|
+
<tr>
|
|
192
|
+
<td>minifySyntax</td>
|
|
193
|
+
<td>"true" if environment is PRODUCTION</td>
|
|
194
|
+
</tr>
|
|
195
|
+
<tr>
|
|
196
|
+
<td>minifyWhitespace</td>
|
|
197
|
+
<td>"true" if environment is PRODUCTION</td>
|
|
198
|
+
</tr>
|
|
199
|
+
<tr>
|
|
200
|
+
<td>outdir</td>
|
|
201
|
+
<td>"build"</td>
|
|
202
|
+
</tr>
|
|
203
|
+
<tr>
|
|
204
|
+
<td>sourcemap</td>
|
|
205
|
+
<td>"true" if environment is <b>NOT</b> PRODUCTION</td>
|
|
206
|
+
</tr>
|
|
207
|
+
<tr>
|
|
208
|
+
<td>splitting</td>
|
|
209
|
+
<td>"true"</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td>target</td>
|
|
213
|
+
<td>"esnext"</td>
|
|
214
|
+
</tr>
|
|
215
|
+
<tr>
|
|
216
|
+
<td>tsconfig</td>
|
|
217
|
+
<td>"tsconfig.json"</td>
|
|
218
|
+
</tr>
|
|
219
|
+
</tbody>
|
|
220
|
+
</table>
|
|
221
|
+
|
|
222
|
+
## License
|
|
223
|
+
- [MIT](https://github.com/michijs/dev-server/blob/master/LICENSE.md)
|
|
224
|
+
|
|
225
|
+
[repo-size]: https://img.shields.io/github/repo-size/michijs/dev-server
|
|
226
|
+
[npm-downloads]: https://img.shields.io/npm/dt/@michijs/dev-server
|
|
227
|
+
[version]: https://img.shields.io/npm/v/@michijs/dev-server
|
|
228
|
+
[github-license]: https://img.shields.io/github/license/michijs/dev-server
|
|
229
|
+
[github-license-url]: https://github.com/michijs/dev-server/blob/master/LICENSE.md
|
package/bin/actions/start.js
CHANGED
|
@@ -27,7 +27,7 @@ export const start = (callback) => {
|
|
|
27
27
|
const splittedPath = fileChangedPath.split(sep);
|
|
28
28
|
const srcDir = splittedPath.slice(0, -1).join(sep);
|
|
29
29
|
const fileName = splittedPath.at(-1);
|
|
30
|
-
const outDir = srcDir.replace(config.public.path, build.initialOptions.outdir);
|
|
30
|
+
const outDir = srcDir.replace(getPath(config.public.path), build.initialOptions.outdir);
|
|
31
31
|
fs.rmSync(getPath(`${outDir}/${transformers
|
|
32
32
|
.find((x) => x.fileRegex.test(fileName))
|
|
33
33
|
?.pathTransformer?.(fileName) ?? fileName}`), { force: true, recursive: true });
|
|
@@ -88,10 +88,10 @@ export const start = (callback) => {
|
|
|
88
88
|
});
|
|
89
89
|
server.on("listening", () => {
|
|
90
90
|
const localURL = getLocalURL(selectedPort);
|
|
91
|
-
console.log(`
|
|
92
|
-
Server running at:
|
|
93
|
-
|
|
94
|
-
> Network: ${coloredString(getHostURL(selectedPort))}
|
|
91
|
+
console.log(`
|
|
92
|
+
Server running at:
|
|
93
|
+
|
|
94
|
+
> Network: ${coloredString(getHostURL(selectedPort))}
|
|
95
95
|
> Local: ${coloredString(localURL)}`);
|
|
96
96
|
callback(selectedPort);
|
|
97
97
|
if (config.watch)
|
package/bin/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import { Timer } from "./classes/Timer.js";
|
|
|
4
4
|
import { hideBin } from "yargs/helpers";
|
|
5
5
|
export async function cli() {
|
|
6
6
|
const timer = new Timer();
|
|
7
|
-
const showReadyMessage = () => console.log(`
|
|
7
|
+
const showReadyMessage = () => console.log(`
|
|
8
8
|
${coloredString(`Ready in ${timer.endTimer()}ms.`)}`);
|
|
9
9
|
timer.startTimer();
|
|
10
10
|
const args = await yargs(hideBin(process.argv))
|
package/bin/config/config.d.ts
CHANGED
|
@@ -84,6 +84,7 @@ declare const config: {
|
|
|
84
84
|
mangleQuoted?: boolean | undefined;
|
|
85
85
|
mangleCache?: Record<string, string | false> | undefined;
|
|
86
86
|
drop?: import("esbuild").Drop[] | undefined;
|
|
87
|
+
dropLabels?: string[] | undefined;
|
|
87
88
|
minify?: boolean | undefined;
|
|
88
89
|
minifyWhitespace: boolean;
|
|
89
90
|
minifyIdentifiers?: boolean | undefined;
|
|
@@ -104,24 +105,7 @@ declare const config: {
|
|
|
104
105
|
logLevel: import("esbuild").LogLevel;
|
|
105
106
|
logLimit?: number | undefined;
|
|
106
107
|
logOverride?: Record<string, import("esbuild").LogLevel> | undefined;
|
|
107
|
-
tsconfigRaw?: string |
|
|
108
|
-
compilerOptions?: {
|
|
109
|
-
alwaysStrict?: boolean | undefined;
|
|
110
|
-
baseUrl?: boolean | undefined;
|
|
111
|
-
experimentalDecorators?: boolean | undefined;
|
|
112
|
-
importsNotUsedAsValues?: "error" | "preserve" | "remove" | undefined;
|
|
113
|
-
jsx?: "preserve" | "react-native" | "react" | "react-jsx" | "react-jsxdev" | undefined;
|
|
114
|
-
jsxFactory?: string | undefined;
|
|
115
|
-
jsxFragmentFactory?: string | undefined;
|
|
116
|
-
jsxImportSource?: string | undefined;
|
|
117
|
-
paths?: Record<string, string[]> | undefined;
|
|
118
|
-
preserveValueImports?: boolean | undefined;
|
|
119
|
-
strict?: boolean | undefined;
|
|
120
|
-
target?: string | undefined;
|
|
121
|
-
useDefineForClassFields?: boolean | undefined;
|
|
122
|
-
verbatimModuleSyntax?: boolean | undefined;
|
|
123
|
-
} | undefined;
|
|
124
|
-
} | undefined;
|
|
108
|
+
tsconfigRaw?: string | import("esbuild").TsconfigRaw | undefined;
|
|
125
109
|
};
|
|
126
110
|
env?: {
|
|
127
111
|
[key: string]: any;
|
package/bin/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/utils/coloredstring.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yargs/index.d.mts","../src/classes/timer.ts","../node_modules/@types/yargs/helpers.d.ts","../node_modules/@types/yargs/helpers.d.mts","../src/utils/getpath.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/@types/web-app-manifest/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/devtools-protocol/types/protocol.d.ts","../node_modules/devtools-protocol/types/protocol-mapping.d.ts","../node_modules/puppeteer/lib/types.d.ts","../src/constants.ts","../src/types.ts","../src/utils/minify.ts","../src/utils/getallfiles.ts","../src/utils/serviceworkertransformer.ts","../src/utils/transformers.ts","../src/utils/copy.ts","../src/config/getipaddress.ts","../src/config/userconfig.ts","../src/config/config.ts","../src/utils/pngtoico.ts","../node_modules/sharp/lib/index.d.ts","../src/utils/getlocalurl.ts","../node_modules/open/index.d.ts","../node_modules/node-watch/lib/watch.d.ts","../src/utils/gethosturl.ts","../src/actions/start.ts","../src/actions/generateassets.ts","../src/actions/build.ts","../node_modules/typescript/lib/typescript.d.ts","../src/config/tsconfig.ts","../src/actions/dist.ts","../src/cli.ts","../src/global.d.ts","../src/index.ts","../src/config/public/client.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf1f655a2fcdd97157c6ba9891b461ffb28dd6c78e62a153ce95d9f4f6c6226","signature":"5a3576ed8855e67c68886fdd82d176b7faffe1dd5b3abf4befb6123142ad2475","impliedFormat":99},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750","impliedFormat":1},{"version":"becf7333392f1f7a77aad90767eead03782f2f4402c3231e5aa5a25159361550","impliedFormat":99},{"version":"108af3cb5d29876650d45df18c1c8803e184cabdd5b38d887ce73c125e3e0de6","signature":"df43ac2a510c4a7eb3dc639ea2f6c41373fe0e689b89e80a9aae6cfddcbbe4a5","impliedFormat":99},{"version":"9cc884a6f8547dec935f930b8aad8212aaae876ebeaab5cd42d20b45251860e7","impliedFormat":1},{"version":"5f960daa4f47be359aead717dc66b71c622307cc037ce104cad7ec4743fa5a4c","impliedFormat":99},{"version":"f8f740c736d75165fef798f5dfd7087222ff8bbd667018b853c1f08324f96a11","signature":"75c7dd820ff92e5e07931d7ba78bd6b2e14102552edfd1e479588448734c482d","impliedFormat":99},{"version":"3b8ac5f54f287ac748e109a2639392ee70ae7e9a3f58ee637e21e1b3d57bed03","impliedFormat":1},{"version":"5e3f8b8769fb87f198677dfcd192ccb0cf6a361b01cd46ff5b7f9d37983f3f50","impliedFormat":1},{"version":"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228","impliedFormat":1},{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","impliedFormat":1},{"version":"57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050","impliedFormat":1},{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"b8e431e9b9bb2dc832b23d4e3e02774e953d5537998923f215ea446169e9a61e","impliedFormat":1},{"version":"3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","impliedFormat":1},{"version":"5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","impliedFormat":1},{"version":"be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","impliedFormat":1},{"version":"8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","impliedFormat":1},{"version":"1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","impliedFormat":1},{"version":"fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","impliedFormat":1},{"version":"55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","impliedFormat":1},{"version":"790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","impliedFormat":1},{"version":"42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","impliedFormat":1},{"version":"354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80","impliedFormat":1},{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","impliedFormat":1},{"version":"5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","impliedFormat":1},{"version":"3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d","impliedFormat":1},{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","impliedFormat":1},{"version":"e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","impliedFormat":1},{"version":"a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","impliedFormat":1},{"version":"c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","impliedFormat":1},{"version":"898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","impliedFormat":1},{"version":"0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","impliedFormat":1},{"version":"ba437529769c1d4766a8a6d5a304f46fbb4f5f1716f23f4cbf20b7a4fd82d8ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","impliedFormat":1},{"version":"bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","impliedFormat":1},{"version":"812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","impliedFormat":1},{"version":"993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661","impliedFormat":1},{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true,"impliedFormat":1},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","impliedFormat":1},{"version":"92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","impliedFormat":1},{"version":"16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b","impliedFormat":1},{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"247aa3419c98713231952b33801d4f46563fe542e03604acd8c63ac45a32409c","impliedFormat":1},{"version":"757c84e91e2abbeec53b7884ebd7b524d32f1e93ceaf206f7ba4123bb57f3a11","impliedFormat":1},{"version":"2d03c4fb7c546057a09d18fc7cb0f09798978eb59ac7dde72cddf948d935fd91","impliedFormat":1},{"version":"ffe89c47fed7d7e52fc028792fc62f2044a370efabcfc68174668f316ba732b0","impliedFormat":1},{"version":"b7a22d8d8571fa9cfbdba02a41338ef16621834e2a29c10de4b8f870b648fab2","signature":"885f71e58371baf6e234d4c7080ac28fdc0462879552fa4f42c2af8188d58a29","impliedFormat":99},{"version":"b0eaf587b49f3f3fecb1b5aaac5af5868896fbecb8bf11fa23601ee029a69eee","signature":"b9446b0b3463cc0644ec4ddeca79adedf1f486f36ab70b995f7bd50cc5dd80a6","impliedFormat":99},{"version":"1311195348bae337e71f6d2688896c0fa44b26f75a91abc5664ced249f49becf","signature":"e35226acb4d207d378ff9506b1306145149afe1266b071d1c4daa98033c7a569","impliedFormat":99},{"version":"2d1d2eb2778a79c49ec61f9420fb21850636b0a4bffce697514ce37f217cca37","signature":"efd0f4958c494e39e91a6291abbff412a2665e43b3138ecbf3611e85cd8a264d","impliedFormat":99},{"version":"c0fb352ba680dcbdeceae5844aca6e5657b14519e3c692f5045a15bdd8e9dff3","signature":"857cb665b79519b670aedf9c948a1d3e0fd9c4540fa7698e38fa4d728c94a6e9","impliedFormat":99},{"version":"57240f111a55e638516eee88b1905f45f7975a8292555ab1cb0fac6eb7486bf7","signature":"fd562fd06b3acb152ea908986eedd20162b2dbc0a7cd883da01cfdeccd885d42","impliedFormat":99},{"version":"1436b439ba26184495d52082222fb7830e33b24a6bd9f4920f9750a2d223dfe0","signature":"29328117e05b54040699d2b667bc8b77e88782f68e2e324473a3043bb566b4cd","impliedFormat":99},{"version":"0b87df3038cdb395dc0785a3fc37626640c8961bd9a6bb5de6a3a229e4cfc401","signature":"7a27baf1053443cefab73b720106d1f9d730a50a37f82155d664145663040f20","impliedFormat":99},{"version":"ddb8328948216aa08862b8deb27002cfb3def0e39725231ac12f18ed74629dd1","signature":"1ac72306b378bd982a4a118ab4a90809ade5b55d6a06a95df32242b9c8afcd7f","impliedFormat":99},{"version":"7cd30fdcb6e5a5025abe4aa431753aff45cc78f151c16bd146212d4618221b6c","signature":"f50790660ae62c2c14f134968b3f4b8d0183ba247ccf50be2f0a50d68480c42f","impliedFormat":99},{"version":"d5c2d403844f81bd59cd583bb5f2df90c1e364c25b2689476dfbe30d473362e5","signature":"52d5ce71c449f1bbcbe7610e66c0fdf7282ca6e5c37d35562d2a93e75cb4bcc1","impliedFormat":99},{"version":"2c7626668ce8ac392606f82f1a64bd99d8ffe080cac073c277b2ec1b0af794ec","impliedFormat":1},{"version":"594c812cbf39ef211dfc743757b36c1f3950562616f3ffc69ff9e03644718c0a","signature":"d303bc4f31c976ab221244ccd5a6b87fb8b17f56ef9780a8806e3f7aecf85eb4","impliedFormat":99},{"version":"93a98ba747d8637f2e65250461ff910355f755caf6a29744def94b1c0636843d","impliedFormat":99},{"version":"0623f0b85a159f595d99b06e84bfad75b78c722a55dd7fee6c52952026493345","impliedFormat":1},{"version":"f79039e0f9a5bd44b25760bd46ca5d49b544833475e391d97174042dd358b6c2","signature":"fae2934c0aa77d24e9ed52baa42d42f311907eadcb851dfed170d6c66a696c1e","impliedFormat":99},{"version":"e2669374604e4625094b426b4e56bb0bb27b10df77eceb6d1f867409489f90ca","signature":"e71c57ef3bdfcd87b491106bdf70578dfbbd3e48582aece785e3a01552fa65ee","impliedFormat":99},{"version":"93ae6569c0781094abb2415e154966b1f34f80c4ec600c79273a17e573381deb","signature":"1c1288ef5eb201cc452db4c8fb1e8a77331ed991b2cb661870d96373fec1f940","impliedFormat":99},{"version":"175f2fcc90cbcc7ed17c58ed0f3d766c4f5b2eb6900cea50dc6fff7f5c8631c3","signature":"c6639f380d643933407420d2fcb5f074984799a24a237bd049b9945b03659a28","impliedFormat":99},{"version":"21c0786dddf52537611499340166278507eb9784628d321c2cb6acc696cba0f6","impliedFormat":1},{"version":"79fe753177a7a9c366e4c233f4cd6313232321e7db4f38c509669fb29c1800fa","signature":"2343bf3e073ba79279ac16e749322d9e229e625b7dfab1cc4d36f136fc6d8108","impliedFormat":99},{"version":"5565f12f08b3d0abab71f24f03da0bb0ad05f9e6f45f88a4d9e245aa532331cb","signature":"b9676c103abbcded39e23921ecfef7f65ad5b091ceee5e964a4921331f15a547","impliedFormat":99},{"version":"d4d805104b242cc0b2b7f34cd4457282922a21cdd1532c63520dd70fe8d075a8","signature":"f1c55f9c94533ef546614eedb041912be0e86df25ff276dfbfa72a5d6d1e9ffb","impliedFormat":99},{"version":"74d0d9fab1b0bfe818e705c47e00fec71668565be4d19b175614bfbee1ece5a1","impliedFormat":99},{"version":"cea685130fb5fd94c5ae228fca54a711f61acdaf7c48813c20e01e9d656d348e","signature":"950e163ec71f6cbeba6a0bb17dbc2c90a838db7748fe9b602abdd5fddacd8ea3","impliedFormat":99},{"version":"aea98fd2c7b7c360358b2695598e46a6ae5c1c11e0799bcafbda684fcbb21577","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","impliedFormat":1}],"root":[50,54,57,[117,127],129,[132,135],[137,142]],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"noErrorTruncation":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"target":99},"fileIdsList":[[60,106],[63,106],[64,69,97,106],[65,76,77,84,94,105,106],[65,66,76,84,106],[67,106],[68,69,77,85,106],[69,94,102,106],[70,72,76,84,106],[71,106],[72,73,106],[76,106],[74,76,106],[76,77,78,94,105,106],[76,77,78,91,94,97,106],[106,110],[106],[72,76,79,84,94,105,106],[76,77,79,80,84,94,102,105,106],[79,81,94,102,105,106],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[76,82,106],[83,105,106],[72,76,84,94,106],[85,106],[86,106],[63,87,106],[88,104,106,110],[89,106],[90,106],[76,91,92,106],[91,93,106,108],[64,76,94,95,96,97,106],[64,94,96,106],[94,95,106],[97,106],[98,106],[94,106],[76,100,101,106],[100,101,106],[69,84,94,102,106],[103,106],[84,104,106],[64,79,90,105,106],[69,106],[94,106,107],[106,108],[106,109],[64,69,76,78,87,94,105,106,108,110],[94,106,111],[55,106],[51,106],[52,106],[76,94,106,113],[106,114],[77,106],[65,106],[65,94,106,113,114,115],[94,106,113],[58,106,126],[65,77,106,126,137],[57,77,86,105,106,116,117,118,126,127,128,129,133],[50,57,58,77,79,86,106,122,123,126,129,130,131,132],[50,53,54,56,106,133,134,135,138],[50,54,57,77,79,86,105,106,118,122,123,124,125],[77,106,126,136],[58,77,86,105,106,117,118],[106,116],[106,118,139],[58,59,106,116,117],[57,77,106,122],[57,77,106],[106,124],[58,106,120,126],[106,119,121,123,126],[58,59,79,118],[136],[118],[58,59,116,117],[58],[123]],"referencedMap":[[60,1],[61,1],[63,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,11],[75,12],[74,13],[76,12],[77,14],[78,15],[62,16],[112,17],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[59,17],[51,17],[56,51],[55,52],[53,53],[52,52],[143,54],[115,55],[114,17],[58,17],[131,56],[130,57],[116,58],[128,59],[48,17],[49,17],[9,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[4,17],[23,17],[20,17],[21,17],[22,17],[24,17],[25,17],[26,17],[5,17],[27,17],[28,17],[29,17],[30,17],[6,17],[34,17],[31,17],[32,17],[33,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[1,17],[47,17],[136,17],[135,60],[138,61],[134,62],[133,63],[54,17],[139,64],[126,65],[124,25],[142,17],[137,66],[125,67],[117,68],[140,17],[141,69],[118,70],[50,17],[123,71],[120,72],[132,73],[129,17],[57,26],[119,17],[127,17],[121,74],[122,75]],"exportedModulesMap":[[60,1],[61,1],[63,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,11],[75,12],[74,13],[76,12],[77,14],[78,15],[62,16],[112,17],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[59,17],[51,17],[56,51],[55,52],[53,53],[52,52],[143,54],[115,55],[114,17],[58,17],[131,56],[130,57],[116,58],[128,59],[48,17],[49,17],[9,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[4,17],[23,17],[20,17],[21,17],[22,17],[24,17],[25,17],[26,17],[5,17],[27,17],[28,17],[29,17],[30,17],[6,17],[34,17],[31,17],[32,17],[33,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[1,17],[47,17],[136,17],[126,76],[137,77],[125,78],[140,17],[141,78],[118,79],[121,80],[122,81]],"semanticDiagnosticsPerFile":[60,61,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,62,112,79,80,81,113,82,83,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,59,51,56,55,53,52,143,115,114,58,131,130,116,128,48,49,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,8,46,43,44,45,1,47,136,135,138,134,133,54,139,126,124,142,137,125,117,140,141,118,50,123,120,132,129,57,119,127,121,122]},"version":"5.0.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/utils/coloredString.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yargs/index.d.mts","../src/classes/Timer.ts","../node_modules/@types/yargs/helpers.d.ts","../node_modules/@types/yargs/helpers.d.mts","../src/utils/getPath.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/@types/web-app-manifest/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/devtools-protocol/types/protocol.d.ts","../node_modules/devtools-protocol/types/protocol-mapping.d.ts","../node_modules/puppeteer/lib/types.d.ts","../src/constants.ts","../src/types.ts","../src/utils/minify.ts","../src/utils/getAllFiles.ts","../src/utils/serviceWorkerTransformer.ts","../src/utils/transformers.ts","../src/utils/copy.ts","../src/config/getIPAddress.ts","../src/config/userConfig.ts","../src/config/config.ts","../src/utils/pngToIco.ts","../node_modules/sharp/lib/index.d.ts","../src/utils/getLocalURL.ts","../node_modules/open/index.d.ts","../node_modules/node-watch/lib/watch.d.ts","../src/utils/getHostURL.ts","../src/actions/start.ts","../src/actions/generateAssets.ts","../src/actions/build.ts","../node_modules/typescript/lib/typescript.d.ts","../src/config/tsconfig.ts","../src/actions/dist.ts","../src/cli.ts","../src/global.d.ts","../src/index.ts","../src/config/public/client.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f620e24dc1d3ece30246163c207434bbbf4b9759a5b0a1265f3f5606338ac0c","signature":"5a3576ed8855e67c68886fdd82d176b7faffe1dd5b3abf4befb6123142ad2475","impliedFormat":99},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750","impliedFormat":1},{"version":"becf7333392f1f7a77aad90767eead03782f2f4402c3231e5aa5a25159361550","impliedFormat":99},{"version":"44afcb14a76d04c7007ddcd59ece41df0027252049b43df36b99fc4bf6b19465","signature":"df43ac2a510c4a7eb3dc639ea2f6c41373fe0e689b89e80a9aae6cfddcbbe4a5","impliedFormat":99},{"version":"9cc884a6f8547dec935f930b8aad8212aaae876ebeaab5cd42d20b45251860e7","impliedFormat":1},{"version":"5f960daa4f47be359aead717dc66b71c622307cc037ce104cad7ec4743fa5a4c","impliedFormat":99},{"version":"fd12bdd89cbf484ec2c2c85df4bc53c0d59d01e6b75236537936cce217e442fd","signature":"75c7dd820ff92e5e07931d7ba78bd6b2e14102552edfd1e479588448734c482d","impliedFormat":99},{"version":"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","impliedFormat":1},{"version":"5e3f8b8769fb87f198677dfcd192ccb0cf6a361b01cd46ff5b7f9d37983f3f50","impliedFormat":1},{"version":"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228","impliedFormat":1},{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true,"impliedFormat":1},{"version":"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","impliedFormat":1},{"version":"57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050","impliedFormat":1},{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","impliedFormat":1},{"version":"3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","impliedFormat":1},{"version":"5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","impliedFormat":1},{"version":"be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","impliedFormat":1},{"version":"8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","impliedFormat":1},{"version":"1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","impliedFormat":1},{"version":"765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","impliedFormat":1},{"version":"55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","impliedFormat":1},{"version":"3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","impliedFormat":1},{"version":"42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","impliedFormat":1},{"version":"354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80","impliedFormat":1},{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","impliedFormat":1},{"version":"5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","impliedFormat":1},{"version":"3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d","impliedFormat":1},{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","impliedFormat":1},{"version":"e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","impliedFormat":1},{"version":"a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","impliedFormat":1},{"version":"c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","impliedFormat":1},{"version":"898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","impliedFormat":1},{"version":"c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","impliedFormat":1},{"version":"ea57fab1b1cccb7abae193364e049b0f40b75f5d38676c12c27c307c1e3f4dfa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","impliedFormat":1},{"version":"5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","impliedFormat":1},{"version":"812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","impliedFormat":1},{"version":"993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661","impliedFormat":1},{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","impliedFormat":1},{"version":"92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","impliedFormat":1},{"version":"16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b","impliedFormat":1},{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"562e1951bb48e89df7b821d998bfcd9458d93b0afd06cf6db8286606da5f21fd","impliedFormat":1},{"version":"68de20700e15386248d35863f97f6d47a395811ed3fe3e5939ab6c14e6ec0a28","impliedFormat":1},{"version":"fa02453c96eb0c5d27ec49545e15d2c85fe48f0e0d081f7779a0312a75349e2f","impliedFormat":1},{"version":"8ab378fd65a67723ff30fada197197f142f3562c5ce81297e9decd5b3ecf2b88","impliedFormat":1},{"version":"fab2c156649f6fd42b9766b9b0eea423bf66fb1067d18e520ef6c9acb90c86cc","signature":"885f71e58371baf6e234d4c7080ac28fdc0462879552fa4f42c2af8188d58a29","impliedFormat":99},{"version":"034d62ba905c08857c2ddf2fb09976cab48e2b414c832352798eebea20747969","signature":"b9446b0b3463cc0644ec4ddeca79adedf1f486f36ab70b995f7bd50cc5dd80a6","impliedFormat":99},{"version":"db43731424654ca6985118bf123bdd98ea9b5af5d8149a90cf795977bf41b9a6","signature":"e35226acb4d207d378ff9506b1306145149afe1266b071d1c4daa98033c7a569","impliedFormat":99},{"version":"e4bf94bbdbde4eb14a6a03bc80cd63516c5c8af1585fc6c4caecf77cb01287a7","signature":"efd0f4958c494e39e91a6291abbff412a2665e43b3138ecbf3611e85cd8a264d","impliedFormat":99},{"version":"9895bf049a5072c010f39f5c9f0d37e7cf6aba69498f60d494f08937c72764ca","signature":"857cb665b79519b670aedf9c948a1d3e0fd9c4540fa7698e38fa4d728c94a6e9","impliedFormat":99},{"version":"52286546d3f6d45a2c040b45fd44e3a524c53ca5d343278b221cb0cc5f688285","signature":"fd562fd06b3acb152ea908986eedd20162b2dbc0a7cd883da01cfdeccd885d42","impliedFormat":99},{"version":"eec9fc348ce1a6dcae088021b23e1522624e868aa406e08b469fac119e3a3b67","signature":"29328117e05b54040699d2b667bc8b77e88782f68e2e324473a3043bb566b4cd","impliedFormat":99},{"version":"2aa80019d2cc87a412b5281df66b78e449df36b3ea125ec8b61034d5a4dc4ba1","signature":"7a27baf1053443cefab73b720106d1f9d730a50a37f82155d664145663040f20","impliedFormat":99},{"version":"000b7c3707cd1604151c6677d8e01b1f5e919493f068b98c64c2ac63a93ab5de","signature":"1ac72306b378bd982a4a118ab4a90809ade5b55d6a06a95df32242b9c8afcd7f","impliedFormat":99},{"version":"0b30792051b1ce73e200538bd120fbb1e3f155e81f73f78543b1e543910147bb","signature":"24548103c3510008a2ff2563572c1e1c9185a72f4556b75f6bb611a3c1260b9a","impliedFormat":99},{"version":"5409de0378cba8c9199d4604a45c85275a4e7bb4dc15542d6cf9b11cdbe2874c","signature":"52d5ce71c449f1bbcbe7610e66c0fdf7282ca6e5c37d35562d2a93e75cb4bcc1","impliedFormat":99},{"version":"6945a36432c131d683c1fd6699b3030a1a9063e7305d750066bbac633e45cd7f","impliedFormat":1},{"version":"6d1a23e4c0f8428b1e00b77b3756503dac3a505a99f3055a29774cd7a81fdd5a","signature":"d303bc4f31c976ab221244ccd5a6b87fb8b17f56ef9780a8806e3f7aecf85eb4","impliedFormat":99},{"version":"93a98ba747d8637f2e65250461ff910355f755caf6a29744def94b1c0636843d","impliedFormat":99},{"version":"511b7e393e5663ef536a2afb21cc06f1bd52246fb3cca039a2b28266e180362a","impliedFormat":1},{"version":"868d28d0b7a26a4034f646f8e84fd61e42fd57a8143327349f120ad00edda173","signature":"fae2934c0aa77d24e9ed52baa42d42f311907eadcb851dfed170d6c66a696c1e","impliedFormat":99},{"version":"06a50d208a6baae511e2500c0336adec96ba80875b585bf5788136b335cd9ca0","signature":"e71c57ef3bdfcd87b491106bdf70578dfbbd3e48582aece785e3a01552fa65ee","impliedFormat":99},{"version":"a9c4a44a21d0f984a3dc07b0416fe7d4832e138766ed74ffdb60ba005289e505","signature":"1c1288ef5eb201cc452db4c8fb1e8a77331ed991b2cb661870d96373fec1f940","impliedFormat":99},{"version":"eeb97303ac8da68d9a35c26cf1bf6791a2a136c828ba68b10df05ba9991658ce","signature":"c6639f380d643933407420d2fcb5f074984799a24a237bd049b9945b03659a28","impliedFormat":99},{"version":"13c7df0f621df902903f6d0c024385acf3d466abda99fa208f340ff95948ba84","impliedFormat":1},{"version":"79b81885210ace9337e3e8db3bc8ac633c226ac85843e033a05bb468e344187e","signature":"2343bf3e073ba79279ac16e749322d9e229e625b7dfab1cc4d36f136fc6d8108","impliedFormat":99},{"version":"e0978d980afa00b06cfa3ca9918a5cb5d450b308c2d88a2ad905b45c04d80aa0","signature":"b9676c103abbcded39e23921ecfef7f65ad5b091ceee5e964a4921331f15a547","impliedFormat":99},{"version":"fd9dda2226ddab524c641e33b5e0015cb39d21bb3e9932d5bdba0ae3d3c1b131","signature":"f1c55f9c94533ef546614eedb041912be0e86df25ff276dfbfa72a5d6d1e9ffb","impliedFormat":99},{"version":"6a400aa275fbe7de7ce057315060d1388fcf59dfc8d17c6c435458754164fffc","impliedFormat":99},{"version":"930378a857f9429ea1e0eec081ccbf02c97f6b34d7e02015d93f9cf53f074860","signature":"950e163ec71f6cbeba6a0bb17dbc2c90a838db7748fe9b602abdd5fddacd8ea3","impliedFormat":99},{"version":"0052de5b3c8ef75cc5bdb1260c0df7a4cb02801a1294769634bd5bc095dc0a18","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","impliedFormat":1}],"root":[50,54,57,[117,127],129,[132,135],[137,142]],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":100,"noErrorTruncation":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"target":99},"fileIdsList":[[60,106],[63,106],[64,69,97,106],[65,76,77,84,94,105,106],[65,66,76,84,106],[67,106],[68,69,77,85,106],[69,94,102,106],[70,72,76,84,106],[71,106],[72,73,106],[76,106],[74,76,106],[76,77,78,94,105,106],[76,77,78,91,94,97,106],[106,110],[106],[72,76,79,84,94,105,106],[76,77,79,80,84,94,102,105,106],[79,81,94,102,105,106],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[76,82,106],[83,105,106],[72,76,84,94,106],[85,106],[86,106],[63,87,106],[88,104,106,110],[89,106],[90,106],[76,91,92,106],[91,93,106,108],[64,76,94,95,96,97,106],[64,94,96,106],[94,95,106],[97,106],[98,106],[63,94,106],[76,100,101,106],[100,101,106],[69,84,94,102,106],[103,106],[84,104,106],[64,79,90,105,106],[69,106],[94,106,107],[106,108],[106,109],[64,69,76,78,87,94,105,106,108,110],[94,106,111],[55,106],[51,106],[52,106],[76,94,106,113],[106,114],[77,106],[65,106],[65,94,106,113,114,115],[94,106,113],[58,106,126],[65,77,106,126,137],[57,77,86,105,106,116,117,118,126,127,128,129,133],[50,57,58,77,79,86,106,122,123,126,129,130,131,132],[50,53,54,56,106,133,134,135,138],[50,54,57,77,79,86,105,106,118,122,123,124,125],[77,106,126,136],[58,77,86,105,106,117,118],[106,116],[106,118,139],[58,59,106,116,117],[57,77,106,122],[57,77,106],[106,124],[58,106,120,126],[106,119,121,123,126],[58,59,79,118],[136],[118],[58,59,116,117],[58],[123]],"referencedMap":[[60,1],[61,1],[63,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,11],[75,12],[74,13],[76,12],[77,14],[78,15],[62,16],[112,17],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[59,17],[51,17],[56,51],[55,52],[53,53],[52,52],[143,54],[115,55],[114,17],[58,17],[131,56],[130,57],[116,58],[128,59],[48,17],[49,17],[9,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[4,17],[23,17],[20,17],[21,17],[22,17],[24,17],[25,17],[26,17],[5,17],[27,17],[28,17],[29,17],[30,17],[6,17],[34,17],[31,17],[32,17],[33,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[1,17],[47,17],[136,17],[135,60],[138,61],[134,62],[133,63],[54,17],[139,64],[126,65],[124,25],[142,17],[137,66],[125,67],[117,68],[140,17],[141,69],[118,70],[50,17],[123,71],[120,72],[132,73],[129,17],[57,26],[119,17],[127,17],[121,74],[122,75]],"exportedModulesMap":[[60,1],[61,1],[63,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,11],[75,12],[74,13],[76,12],[77,14],[78,15],[62,16],[112,17],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[59,17],[51,17],[56,51],[55,52],[53,53],[52,52],[143,54],[115,55],[114,17],[58,17],[131,56],[130,57],[116,58],[128,59],[48,17],[49,17],[9,17],[11,17],[10,17],[2,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[3,17],[4,17],[23,17],[20,17],[21,17],[22,17],[24,17],[25,17],[26,17],[5,17],[27,17],[28,17],[29,17],[30,17],[6,17],[34,17],[31,17],[32,17],[33,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[1,17],[47,17],[136,17],[126,76],[137,77],[125,78],[140,17],[141,78],[118,79],[121,80],[122,81]],"semanticDiagnosticsPerFile":[60,61,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,62,112,79,80,81,113,82,83,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,59,51,56,55,53,52,143,115,114,58,131,130,116,128,48,49,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,8,46,43,44,45,1,47,136,135,138,134,133,54,139,126,124,142,137,125,117,140,141,118,50,123,120,132,129,57,119,127,121,122]},"version":"5.1.6"}
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="500">
|
|
2
|
-
<style>
|
|
3
|
-
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900');
|
|
4
|
-
</style>
|
|
5
|
-
<!-- Background color -->
|
|
6
|
-
<rect width="100%" height="100%" fill="{{background}}" />
|
|
7
|
-
|
|
8
|
-
<!-- Background image with blurred logo -->
|
|
9
|
-
|
|
10
|
-
<image x="-295" y="90" width="100%" height="100%" filter="url(#blur)" href="{{icon-href}}"></image>
|
|
11
|
-
|
|
12
|
-
<!-- Filter for blurring the logo -->
|
|
13
|
-
<filter id="blur">
|
|
14
|
-
<feGaussianBlur stdDeviation="5" />
|
|
15
|
-
</filter>
|
|
16
|
-
|
|
17
|
-
<!-- PC -->
|
|
18
|
-
<svg x="50%" y="-5%" width="50%" viewBox="0 0 200 200">
|
|
19
|
-
<!-- Border -->
|
|
20
|
-
<rect x="10" y="40" width="180" height="120" rx="5" ry="5" stroke="#000" stroke-width="5" fill="#000" />
|
|
21
|
-
<!-- PC screen -->
|
|
22
|
-
<image x="10" y="43" width="180" height="110" href="{{pc-href}}"></image>
|
|
23
|
-
<!-- PC stand -->
|
|
24
|
-
<g>
|
|
25
|
-
<rect x="80" y="160" width="40" height="20" rx="0" ry="3" fill="#000" />
|
|
26
|
-
<!-- Monitor base -->
|
|
27
|
-
<polygon points="80,180 70,200 130,200 120,180" fill="#000" />
|
|
28
|
-
</g>
|
|
29
|
-
<!-- PC button -->
|
|
30
|
-
<circle cx="100" cy="158" r="2" fill="#FFF" />
|
|
31
|
-
</svg>
|
|
32
|
-
|
|
33
|
-
<!-- Tablet -->
|
|
34
|
-
<svg x="40%" y="30%" width="25%" viewBox="0 0 200 200">
|
|
35
|
-
<!-- Tablet frame -->
|
|
36
|
-
<rect x="20" y="40" width="161" height="120" rx="5" ry="5" stroke="#000000" stroke-width="5" fill="#222"/>
|
|
37
|
-
<!-- Tablet screen -->
|
|
38
|
-
<image x="22.5" y="44" width="156" height="112" href="{{tablet-href}}"/>
|
|
39
|
-
</svg>
|
|
40
|
-
|
|
41
|
-
<!-- Phone -->
|
|
42
|
-
<svg x="41%" y="-7%" width="15%" viewBox="0 0 200 200">
|
|
43
|
-
<!-- Phone frame -->
|
|
44
|
-
<rect x="20" y="40" width="120" height="180" rx="10" ry="10" stroke="#000000" stroke-width="5" fill="#222" />
|
|
45
|
-
<!-- Phone screen -->
|
|
46
|
-
<image x="22.5" y="48" width="115" height="155" href="{{phone-href}}"></image>
|
|
47
|
-
|
|
48
|
-
<circle cx="80" cy="211" r="5" fill="#FFF" />
|
|
49
|
-
</svg>
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
<!-- App title -->
|
|
53
|
-
<text x="21%" y="20%" text-anchor="middle" style="filter: invert(1)" font-family="Roboto" font-size="40"
|
|
54
|
-
font-weight="bold">
|
|
55
|
-
{{app-title}}
|
|
56
|
-
</text>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="500">
|
|
2
|
+
<style>
|
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900');
|
|
4
|
+
</style>
|
|
5
|
+
<!-- Background color -->
|
|
6
|
+
<rect width="100%" height="100%" fill="{{background}}" />
|
|
7
|
+
|
|
8
|
+
<!-- Background image with blurred logo -->
|
|
9
|
+
|
|
10
|
+
<image x="-295" y="90" width="100%" height="100%" filter="url(#blur)" href="{{icon-href}}"></image>
|
|
11
|
+
|
|
12
|
+
<!-- Filter for blurring the logo -->
|
|
13
|
+
<filter id="blur">
|
|
14
|
+
<feGaussianBlur stdDeviation="5" />
|
|
15
|
+
</filter>
|
|
16
|
+
|
|
17
|
+
<!-- PC -->
|
|
18
|
+
<svg x="50%" y="-5%" width="50%" viewBox="0 0 200 200">
|
|
19
|
+
<!-- Border -->
|
|
20
|
+
<rect x="10" y="40" width="180" height="120" rx="5" ry="5" stroke="#000" stroke-width="5" fill="#000" />
|
|
21
|
+
<!-- PC screen -->
|
|
22
|
+
<image x="10" y="43" width="180" height="110" href="{{pc-href}}"></image>
|
|
23
|
+
<!-- PC stand -->
|
|
24
|
+
<g>
|
|
25
|
+
<rect x="80" y="160" width="40" height="20" rx="0" ry="3" fill="#000" />
|
|
26
|
+
<!-- Monitor base -->
|
|
27
|
+
<polygon points="80,180 70,200 130,200 120,180" fill="#000" />
|
|
28
|
+
</g>
|
|
29
|
+
<!-- PC button -->
|
|
30
|
+
<circle cx="100" cy="158" r="2" fill="#FFF" />
|
|
31
|
+
</svg>
|
|
32
|
+
|
|
33
|
+
<!-- Tablet -->
|
|
34
|
+
<svg x="40%" y="30%" width="25%" viewBox="0 0 200 200">
|
|
35
|
+
<!-- Tablet frame -->
|
|
36
|
+
<rect x="20" y="40" width="161" height="120" rx="5" ry="5" stroke="#000000" stroke-width="5" fill="#222"/>
|
|
37
|
+
<!-- Tablet screen -->
|
|
38
|
+
<image x="22.5" y="44" width="156" height="112" href="{{tablet-href}}"/>
|
|
39
|
+
</svg>
|
|
40
|
+
|
|
41
|
+
<!-- Phone -->
|
|
42
|
+
<svg x="41%" y="-7%" width="15%" viewBox="0 0 200 200">
|
|
43
|
+
<!-- Phone frame -->
|
|
44
|
+
<rect x="20" y="40" width="120" height="180" rx="10" ry="10" stroke="#000000" stroke-width="5" fill="#222" />
|
|
45
|
+
<!-- Phone screen -->
|
|
46
|
+
<image x="22.5" y="48" width="115" height="155" href="{{phone-href}}"></image>
|
|
47
|
+
|
|
48
|
+
<circle cx="80" cy="211" r="5" fill="#FFF" />
|
|
49
|
+
</svg>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
<!-- App title -->
|
|
53
|
+
<text x="21%" y="20%" text-anchor="middle" style="filter: invert(1)" font-family="Roboto" font-size="40"
|
|
54
|
+
font-weight="bold">
|
|
55
|
+
{{app-title}}
|
|
56
|
+
</text>
|
|
57
57
|
</svg>
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@michijs/dev-server",
|
|
3
|
-
"license": "MIT",
|
|
4
|
-
"version": "0.5.
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/michijs/dev-server.git"
|
|
8
|
-
},
|
|
9
|
-
"main": "bin/index",
|
|
10
|
-
"exports": {
|
|
11
|
-
"types": "./bin/index.d.ts",
|
|
12
|
-
"default": "./bin/index.js"
|
|
13
|
-
},
|
|
14
|
-
"bin": {
|
|
15
|
-
"michi-server": "bin/index.js"
|
|
16
|
-
},
|
|
17
|
-
"description": "Development server based on esbuild",
|
|
18
|
-
"files": [
|
|
19
|
-
"bin/",
|
|
20
|
-
"feature-image-template.svg"
|
|
21
|
-
],
|
|
22
|
-
"type": "module",
|
|
23
|
-
"baseUrl": "./src",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dist": "tsc",
|
|
26
|
-
"link": "npm run dist && npm link --force && tsc -w",
|
|
27
|
-
"publish-patch-version": "npm version patch && npm run publish-npm",
|
|
28
|
-
"publish-npm": "npm run dist && npm publish --access public"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@types/node": "20.
|
|
32
|
-
"@types/yargs": "17.0.24"
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"react",
|
|
36
|
-
"javascript",
|
|
37
|
-
"css",
|
|
38
|
-
"bundler",
|
|
39
|
-
"typescript",
|
|
40
|
-
"compiler",
|
|
41
|
-
"jsx",
|
|
42
|
-
"commonjs",
|
|
43
|
-
"minifier",
|
|
44
|
-
"tsx",
|
|
45
|
-
"esm",
|
|
46
|
-
"server",
|
|
47
|
-
"development"
|
|
48
|
-
],
|
|
49
|
-
"engines": {
|
|
50
|
-
"node": ">=14.16"
|
|
51
|
-
},
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@types/web-app-manifest": "1.0.4",
|
|
54
|
-
"esbuild": "0.18.
|
|
55
|
-
"node-watch": "0.7.
|
|
56
|
-
"open": "9.1.0",
|
|
57
|
-
"puppeteer": "
|
|
58
|
-
"sharp": "0.32.
|
|
59
|
-
"yargs": "17.7.2"
|
|
60
|
-
},
|
|
61
|
-
"peerDependencies": {
|
|
62
|
-
"typescript": "^5.0.4"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@michijs/dev-server",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"version": "0.5.5",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/michijs/dev-server.git"
|
|
8
|
+
},
|
|
9
|
+
"main": "bin/index",
|
|
10
|
+
"exports": {
|
|
11
|
+
"types": "./bin/index.d.ts",
|
|
12
|
+
"default": "./bin/index.js"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"michi-server": "bin/index.js"
|
|
16
|
+
},
|
|
17
|
+
"description": "Development server based on esbuild",
|
|
18
|
+
"files": [
|
|
19
|
+
"bin/",
|
|
20
|
+
"feature-image-template.svg"
|
|
21
|
+
],
|
|
22
|
+
"type": "module",
|
|
23
|
+
"baseUrl": "./src",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dist": "tsc",
|
|
26
|
+
"link": "npm run dist && npm link --force && tsc -w",
|
|
27
|
+
"publish-patch-version": "npm version patch && npm run publish-npm",
|
|
28
|
+
"publish-npm": "npm run dist && npm publish --access public"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "20.4.8",
|
|
32
|
+
"@types/yargs": "17.0.24"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react",
|
|
36
|
+
"javascript",
|
|
37
|
+
"css",
|
|
38
|
+
"bundler",
|
|
39
|
+
"typescript",
|
|
40
|
+
"compiler",
|
|
41
|
+
"jsx",
|
|
42
|
+
"commonjs",
|
|
43
|
+
"minifier",
|
|
44
|
+
"tsx",
|
|
45
|
+
"esm",
|
|
46
|
+
"server",
|
|
47
|
+
"development"
|
|
48
|
+
],
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=14.16"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@types/web-app-manifest": "1.0.4",
|
|
54
|
+
"esbuild": "0.18.19",
|
|
55
|
+
"node-watch": "0.7.4",
|
|
56
|
+
"open": "9.1.0",
|
|
57
|
+
"puppeteer": "21.0.3",
|
|
58
|
+
"sharp": "0.32.4",
|
|
59
|
+
"yargs": "17.7.2"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"typescript": "^5.0.4"
|
|
63
|
+
}
|
|
64
|
+
}
|