-
Notifications
You must be signed in to change notification settings - Fork 361
Closed
Description
Here is what I get when running v14.2.0:
> yarn run v1.22.19
$ npm-run-all --parallel build:*
$ microbundle --cwd packages/api --tsconfig packages/api/tsconfig.json --target web --format modern,cjs && cp -l packages/api/dist/api/src/mod.d.ts packages/api/dist/mod.d.ts
$ microbundle --cwd packages/cli --tsconfig packages/cli/tsconfig.json --target node --format modern
Build "cli" to dist:
6.28 kB: main.mjs.gz
5.57 kB: main.mjs.br
Build "api" to dist:
1.81 kB: mod.cjs.gz
1.6 kB: mod.cjs.br
1140 B: mod.mjs.gz
978 B: mod.mjs.br
Done in 6.98s.
> exa -al packages/*/dist
packages/api/dist:
drwxr-xr-x - xyz 19 May 11:05 api
drwxr-xr-x - xyz 19 May 11:05 lib
.rw-r--r-- 5.5k xyz 19 May 11:05 mod.cjs
.rw-r--r-- 12k xyz 19 May 11:05 mod.cjs.map
.rw-r--r-- 131 xyz 19 May 11:05 mod.d.ts
.rw-r--r-- 2.9k xyz 19 May 11:05 mod.mjs
.rw-r--r-- 9.9k xyz 19 May 11:05 mod.mjs.map
packages/cli/dist:
.rw-r--r-- 23k xyz 19 May 11:05 main.mjs
.rw-r--r-- 43k xyz 19 May 11:05 main.mjs.map
drwxr-xr-x - xyz 19 May 11:05 packages
Here is what I get with v15.0.0:
yarn build
yarn run v1.22.19
$ npm-run-all --parallel build:*
$ microbundle --cwd packages/api --target web --format modern,cjs && cp -l packages/api/dist/api/src/mod.d.ts packages/api/dist/mod.d.ts
$ microbundle --cwd packages/cli --target node --format modern
Build "cli" to dist:
6.28 kB: main.modern.js.gz
5.57 kB: main.modern.js.br
Build "api" to dist:
1.81 kB: mod.cjs.gz
1.6 kB: mod.cjs.br
1140 B: mod.modern.js.gz
978 B: mod.modern.js.br
Done in 6.75s.
10:47:22 [I] β exa -al packages/*/dist
packages/api/dist:
drwxr-xr-x - xyz 19 May 10:47 api
drwxr-xr-x - xyz 19 May 10:47 lib
.rw-r--r-- 5.5k xyz 19 May 10:47 mod.cjs
.rw-r--r-- 12k xyz 19 May 10:47 mod.cjs.map
.rw-r--r-- 131 xyz 19 May 10:47 mod.d.ts
.rw-r--r-- 3.0k xyz 19 May 10:47 mod.modern.js
.rw-r--r-- 9.9k xyz 19 May 10:47 mod.modern.js.map
packages/cli/dist:
.rw-r--r-- 23k xyz 19 May 10:47 main.modern.js
.rw-r--r-- 43k xyz 19 May 10:47 main.modern.js.map
drwxr-xr-x - xyz 19 May 10:47 packages
These are the config files for api and cli
ββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β File: packages/api/package.json
β Size: 276 B
ββββββββΌβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 β {
2 β "name": "api",
3 β "private": true,
4 β "description": "API to write tests running in the browser",
5 β "type": "module",
6 β "source": "src/mod.ts",
7 β "types": "dist/mod.d.ts",
8 β "main": "dist/mod.cjs",
9 β "esmodule": "dist/mod.mjs",
10 β "dependencies": {
11 β "emittery": "*"
12 β }
13 β }
ββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β File: packages/cli/package.json
β Size: 647 B
ββββββββΌβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 β {
2 β "name": "cli",
3 β "private": true,
4 β "description": "CLI to run tests written with the API",
5 β "type": "module",
6 β "source": "src/main.ts",
7 β "main": "dist/main.cjs",
8 β "esmodule": "dist/main.mjs",
9 β "dependencies": {
10 β "@rollup/plugin-commonjs": "*",
11 β "@rollup/plugin-json": "*",
12 β "@rollup/plugin-node-resolve": "*",
13 β "@rollup/plugin-typescript": "*",
14 β "chalk": "*",
15 β "ci-info": "*",
16 β "emittery": "*",
17 β "express": "*",
18 β "figures": "*",
19 β "get-port": "*",
20 β "globby": "*",
21 β "matcher": "*",
22 β "ms": "*",
23 β "p-queue": "*",
24 β "playwright": "*",
25 β "rollup": "*",
26 β "supertap": "*",
27 β "yargs": "*"
28 β }
29 β }
Sources can be found here.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels