Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Nov 10, 2023
1 parent 1dbdf3b commit df5e782
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions packages/cheatsheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"main": "./out/index.js",
"scripts": {
"test": "jest",
"compile": "pnpm compile:esbuild && pnpm compile:tsc",
"watch": "pnpm run --filter @cursorless/cheatsheet --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch:tsc": "pnpm compile:esbuild --watch",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile:tsc": "tsc --build"
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/cheatsheet --parallel '/^watch:.*/'"
},
"keywords": [],
"author": "",
Expand Down
10 changes: 5 additions & 5 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"description": "Common utilities for use anywhere in our codebase",
"main": "./out/index.js",
"scripts": {
"compile": "pnpm compile:esbuild && pnpm compile:tsc",
"watch": "pnpm run --filter @cursorless/common --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch:tsc": "pnpm compile:esbuild --watch",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile:tsc": "tsc --build"
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/common --parallel '/^watch:.*/'"
},
"keywords": [],
"author": "",
Expand Down
10 changes: 5 additions & 5 deletions packages/cursorless-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"description": "The core Cursorless engine, which is responsible for parsing and executing commands, allocating hats, etc",
"main": "./out/index.js",
"scripts": {
"compile": "pnpm compile:esbuild && pnpm compile:tsc",
"watch": "pnpm run --filter @cursorless/cursorless-engine --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch:tsc": "pnpm compile:esbuild --watch",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile:tsc": "tsc --build"
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/cursorless-engine --parallel '/^watch:.*/'"
},
"keywords": [],
"author": "",
Expand Down
6 changes: 3 additions & 3 deletions packages/meta-updater/src/updatePackageJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ async function getScripts(
...(inputScripts ?? {}),
...(isLib
? {
["compile:esbuild"]: `esbuild ${LIB_ENTRY_POINT} --sourcemap --format=esm --bundle --packages=external --outfile=${LIB_JS_OUTPUT}`,
["compile:tsc"]: "tsc --build",
compile: "pnpm compile:esbuild && pnpm compile:tsc",
["compile:esbuild"]: `esbuild ${LIB_ENTRY_POINT} --sourcemap --format=esm --bundle --packages=external --outfile=${LIB_JS_OUTPUT}`,
compile: "pnpm compile:tsc && pnpm compile:esbuild",
["watch:tsc"]: "pnpm compile:tsc --watch",
["watch:esbuild"]: "pnpm compile:esbuild --watch",
["watch:tsc"]: "pnpm compile:esbuild --watch",
watch: `pnpm run --filter ${name} --parallel '/^watch:.*/'`,
}
: {}),
Expand Down
10 changes: 5 additions & 5 deletions packages/vscode-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"description": "Common utility functions usable anywhere that VSCode api is available",
"main": "./out/index.js",
"scripts": {
"compile": "pnpm compile:esbuild && pnpm compile:tsc",
"watch": "pnpm run --filter @cursorless/vscode-common --parallel '/^watch:.*/'",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch:tsc": "pnpm compile:esbuild --watch",
"compile:tsc": "tsc --build",
"compile:esbuild": "esbuild ./src/index.ts --sourcemap --format=esm --bundle --packages=external --outfile=./out/index.js",
"compile:tsc": "tsc --build"
"compile": "pnpm compile:tsc && pnpm compile:esbuild",
"watch:tsc": "pnpm compile:tsc --watch",
"watch:esbuild": "pnpm compile:esbuild --watch",
"watch": "pnpm run --filter @cursorless/vscode-common --parallel '/^watch:.*/'"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit df5e782

Please sign in to comment.