Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ foo bar baz: "foo bar baz"
```yaml
repos:
- repo: https://github.com/cursorless-dev/talon-tools
rev: v0.10.0
rev: v0.11.0
hooks:
- id: talon-fmt
- id: snippet-fmt
Expand Down Expand Up @@ -148,5 +148,3 @@ When creating a new release do the following:
- Update version in [`package.json`](./package.json)
- Update version in [`README.md`](./README.md#pre-commit)
- Run build: `npm run build`
- Add new tag eg `git tag v1.2.0`
- Publish lib: `npm publish --access public`
2 changes: 1 addition & 1 deletion dist/build.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare function build(): Promise<void>;
export {};
4 changes: 2 additions & 2 deletions dist/lib.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/lib.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/libNode.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/node/cli.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Readable } from "node:stream";
import type { CLI, Logger } from "../types.js";
import { type ExitCode } from "../util/constants.js";
import type { ExitCode } from "../util/constants.js";
export declare function main(cli: CLI): Promise<void>;
interface FormatFilesArgs {
cli: CLI;
Expand Down
8 changes: 4 additions & 4 deletions dist/snippet/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "./parseSnippetFile.js";
export * from "./serializeSnippetFile.js";
export * from "./snippetFormatter.js";
export * from "./snippetTypes.js";
export { parseSnippetFile } from "./parseSnippetFile.js";
export { serializeSnippetFile } from "./serializeSnippetFile.js";
export { snippetFormatter } from "./snippetFormatter.js";
export type * from "./snippetTypes.js";
Loading