annotask 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -7
- package/dist/chunk-2PL37QTY.js +1043 -0
- package/dist/chunk-2PL37QTY.js.map +1 -0
- package/dist/chunk-4J7F2BC5.js +61 -0
- package/dist/chunk-4J7F2BC5.js.map +1 -0
- package/dist/chunk-DPJXWLPB.js +61 -0
- package/dist/chunk-DPJXWLPB.js.map +1 -0
- package/dist/chunk-DQBM2VFQ.js +465 -0
- package/dist/chunk-DQBM2VFQ.js.map +1 -0
- package/dist/chunk-FMNBQLJZ.js +61 -0
- package/dist/chunk-FMNBQLJZ.js.map +1 -0
- package/dist/chunk-GBYXEWJS.js +1067 -0
- package/dist/chunk-GBYXEWJS.js.map +1 -0
- package/dist/chunk-LGNV6UH3.js +488 -0
- package/dist/chunk-LGNV6UH3.js.map +1 -0
- package/dist/chunk-TBBJTSMJ.js +496 -0
- package/dist/chunk-TBBJTSMJ.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +2 -2
- package/dist/server.d.ts +1 -1
- package/dist/server.js +1 -1
- package/dist/shell/assets/index-B-SRjSQF.js +59 -0
- package/dist/shell/assets/{index-En0AXNAK.css → index-CeF02UAx.css} +1 -1
- package/dist/shell/index.html +2 -2
- package/dist/standalone.js +2 -2
- package/dist/vendor/axe-core.min.js +12 -0
- package/dist/vendor/html2canvas.min.js +20 -0
- package/dist/webpack.js +3 -3
- package/package.json +8 -3
- package/dist/shell/assets/index-Dko9s8T0.js +0 -59
- package/skills/annotask-watch/SKILL.md +0 -47
package/dist/cli.js
CHANGED
|
@@ -127,7 +127,7 @@ function watchChanges() {
|
|
|
127
127
|
async function fetchReport() {
|
|
128
128
|
try {
|
|
129
129
|
const tasksUrl = mfeFilter ? `${apiUrl}/tasks?mfe=${encodeURIComponent(mfeFilter)}` : `${apiUrl}/tasks`;
|
|
130
|
-
const reportUrl = `${apiUrl}/report`;
|
|
130
|
+
const reportUrl = mfeFilter ? `${apiUrl}/report?mfe=${encodeURIComponent(mfeFilter)}` : `${apiUrl}/report`;
|
|
131
131
|
const [tasksRes, reportRes] = await Promise.all([
|
|
132
132
|
fetch(tasksUrl),
|
|
133
133
|
fetch(reportUrl)
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
bridgeClientScript
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-GBYXEWJS.js";
|
|
4
4
|
import {
|
|
5
5
|
writeMfeServerInfo,
|
|
6
6
|
writeServerInfo
|
|
7
7
|
} from "./chunk-XLNGAH3S.js";
|
|
8
8
|
import {
|
|
9
9
|
createAnnotaskServer
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-TBBJTSMJ.js";
|
|
11
11
|
import {
|
|
12
12
|
transformFile,
|
|
13
13
|
transformHTML
|
package/dist/server.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ interface APIOptions {
|
|
|
37
37
|
}
|
|
38
38
|
declare function createAPIMiddleware(options: APIOptions): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;
|
|
39
39
|
|
|
40
|
-
declare function createShellMiddleware(): (req: IncomingMessage, res: ServerResponse, next: () => void) => void
|
|
40
|
+
declare function createShellMiddleware(): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;
|
|
41
41
|
|
|
42
42
|
interface AnnotaskServer {
|
|
43
43
|
middleware: (req: IncomingMessage, res: ServerResponse, next: () => void) => void;
|