Skip to content

Commit e14e1c0

Browse files
Move sheet cheat to out directory
1 parent 1468722 commit e14e1c0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/cheatsheet-local/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Note that there is no development server for this app. It is just a bundle step.
1111
Builds the cheatsheet into a single file for deployment.
1212

1313
```bash
14-
pnpm bundle
14+
pnpm bundle:prod
1515
```
1616

17-
The output will be in `dist/index.html`. Note that this file includes a bit of fake data so that it can be opened to check that it is functioning, but in production it will be replaced with the real data (see above).
17+
The output will be in `out/index.html`. Note that this file includes a bit of fake data so that it can be opened to check that it is functioning, but in production it will be replaced with the real data (see above).

packages/cheatsheet-local/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { viteSingleFile } from "vite-plugin-singlefile";
77
export default defineConfig((): UserConfig => {
88
return {
99
build: {
10-
outDir: "dist",
10+
outDir: "out",
1111
},
1212

1313
resolve: {

packages/cursorless-vscode/src/scripts/populateDist/assets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const assets: Asset[] = [
88
{ source: "../../NOTICE.md", destination: "NOTICE.md" },
99
{ source: "../../README.md", destination: "README.md" },
1010
{
11-
source: "../cheatsheet-local/dist/index.html",
11+
source: "../cheatsheet-local/out/index.html",
1212
destination: "cheatsheet.html",
1313
// We allow this to be optional in dev mode because it is expensive to
1414
// build, and is only used when they say "cursorless cheatsheet".

0 commit comments

Comments
 (0)