@michijs/dev-server 0.7.4 → 0.7.6
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/bin/cli.js +0 -2
- package/bin/types.d.ts +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -9,8 +9,6 @@ const version = JSON.parse(readFileSync(resolve(dirname(fileURLToPath(import.met
|
|
|
9
9
|
export async function cli() {
|
|
10
10
|
console.log(` ${coloredString(`Running dev server version ${version}.`)}`);
|
|
11
11
|
const timer = new Timer();
|
|
12
|
-
console.log(`
|
|
13
|
-
${coloredString(`Ready in ${timer.endTimer()}ms.`)}`);
|
|
14
12
|
const showReadyMessage = () => console.log(`
|
|
15
13
|
${coloredString(`Ready in ${timer.endTimer()}ms.`)}`);
|
|
16
14
|
timer.startTimer();
|
package/bin/types.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ export interface ServerWebAppManifest extends WebAppManifest {
|
|
|
138
138
|
export interface FileHandler {
|
|
139
139
|
action: string;
|
|
140
140
|
name: string;
|
|
141
|
-
icons
|
|
141
|
+
icons?: ImageResource[];
|
|
142
142
|
accept: Record<string, Set<string> | string[]>;
|
|
143
143
|
}
|
|
144
144
|
export interface Config {
|