Skip to content

Commit 62cabe1

Browse files
authored
cherry-pick(#39969): chore(npm): include all *.md from lib (#39970)
1 parent 0c65a75 commit 62cabe1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/playwright-core/.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
!lib/**/*.svg
1212
!lib/**/*.ttf
1313
!lib/**/*.json
14-
!lib/**/skill/**/*.md
14+
!lib/**/*.md
1515
!lib/utilsBundleImpl/xdg-open
1616
!lib/**/manifest.webmanifest
1717
# Exclude injected files. A preprocessed version of these is included via lib/generated.

packages/playwright-core/src/tools/trace/installSkill.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import path from 'path';
2222
export async function installSkill() {
2323
const cwd = process.cwd();
2424
const skillSource = path.join(__dirname, 'SKILL.md');
25-
const destDir = path.join(cwd, '.claude', 'playwright-trace');
25+
const destDir = path.join(cwd, '.claude', 'skills', 'playwright-trace');
2626
await fs.promises.mkdir(destDir, { recursive: true });
2727
const destFile = path.join(destDir, 'SKILL.md');
2828
await fs.promises.copyFile(skillSource, destFile);

0 commit comments

Comments
 (0)