Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dev-tool] Add snippets extraction #31143

Merged
merged 20 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[dev-tool] Add snippets extraction
  • Loading branch information
mpodwysocki committed Sep 17, 2024
commit e46d93604c70a340280c03a20738104d449f8a26
6 changes: 3 additions & 3 deletions common/tools/dev-tool/src/commands/run/update-snippets.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from "fs/promises";
import { EOL } from "os";
import path from "path";
import fs from "node:fs/promises";
import { EOL } from "node:os";
import path from "node:path";
import ts from "typescript";
import { leafCommand, makeCommandInfo } from "../../framework/command";
import { findMatchingFiles } from "../../util/findMatchingFiles";
Expand Down
Loading
Loading