File tree 2 files changed +20
-3
lines changed
packages/test-case-component
2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 3
3
"version" : " 0.0.1" ,
4
4
"type" : " module" ,
5
5
"description" : " Component for displaying results of test cases in cursorless-vscode-e2e" ,
6
- "main" : " index.js" ,
6
+ "main" : " ./out/ index.js" ,
7
7
"scripts" : {
8
8
"build" : " tsx src/lib/buildDictionary" ,
9
9
"test" : " jest" ,
10
- "test:watch" : " jest --watch"
10
+ "test:watch" : " jest --watch" ,
11
+ "compile:tsc" : " tsc --build" ,
12
+ "compile:esbuild" : " esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js" ,
13
+ "compile" : " pnpm compile:tsc && pnpm compile:esbuild" ,
14
+ "watch:tsc" : " pnpm compile:tsc --watch" ,
15
+ "watch:esbuild" : " pnpm compile:esbuild --watch" ,
16
+ "watch" : " pnpm run --filter @cursorless/test-case-component --parallel '/^watch:.*/'" ,
17
+ "clean" : " rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
11
18
},
12
19
"keywords" : [],
13
20
"author" : " " ,
14
- "license" : " ISC " ,
21
+ "license" : " MIT " ,
15
22
"dependencies" : {
16
23
"fs-extra" : " 11.1.0" ,
17
24
"prettier" : " 2.8.4" ,
18
25
"shiki" : " 0.14.3" ,
19
26
"tsx" : " 3.12.7" ,
20
27
"yaml" : " 2.2.1"
28
+ },
29
+ "types" : " ./out/index.d.ts" ,
30
+ "exports" : {
31
+ "." : {
32
+ "cursorless:bundler" : " ./src/index.ts" ,
33
+ "default" : " ./out/index.js"
34
+ }
21
35
}
22
36
}
Original file line number Diff line number Diff line change 29
29
{
30
30
"path" : " ./packages/meta-updater"
31
31
},
32
+ {
33
+ "path" : " ./packages/test-case-component"
34
+ },
32
35
{
33
36
"path" : " ./packages/test-harness"
34
37
},
You can’t perform that action at this time.
0 commit comments