Skip to content

Commit

Permalink
chore: Run pnpm -w fix:meta
Browse files Browse the repository at this point in the history
  • Loading branch information
trillium committed Mar 25, 2024
1 parent 6bfa544 commit 25adbca
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 11 deletions.
18 changes: 17 additions & 1 deletion packages/generate-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,29 @@
"scripts": {
"build": "tsx src/lib/buildDictionary",
"test": "jest",
"test:watch": "jest --watch"
"test:watch": "jest --watch",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/generate-examples --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
},
"dependencies": {
"fs-extra": "11.1.0",
"prettier": "2.8.4",
"shiki": "0.14.3",
"tsx": "3.12.7",
"yaml": "2.2.1"
},
"license": "MIT",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"exports": {
".": {
"cursorless:bundler": "./src/index.ts",
"default": "./out/index.js"
}
}
}
19 changes: 9 additions & 10 deletions packages/generate-examples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
"esModuleInterop": true,
"rootDir": "src",
"outDir": "out"
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
"include": [
"src/**/*.ts",
"src/**/*.json",
"../../typings/**/*.d.ts"
],
"references": []
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
{
"path": "./packages/cursorless-vscode-e2e"
},
{
"path": "./packages/generate-examples"
},
{
"path": "./packages/meta-updater"
},
Expand Down

0 comments on commit 25adbca

Please sign in to comment.