- play/index.html: 插件体验展示页,插件注册表驱动,新增插件只需加一条配置 - play/blueprints/: WPMind + 空白中文环境两个预设 - Justfile: pw-test 集成到 test-plugin 完整验收流程 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
456 B
Text
29 lines
456 B
Text
# === 默认忽略一切,只跟踪验收测试基础设施 ===
|
|
*
|
|
|
|
# 允许跟踪的文件
|
|
!.gitignore
|
|
!Justfile
|
|
!backstop.json
|
|
!pa11y.json
|
|
!acceptance-criteria.json
|
|
!playwright.config.js
|
|
|
|
# 允许跟踪的目录
|
|
!tests/
|
|
!tests/**
|
|
!play/
|
|
!play/**
|
|
!blueprints/
|
|
!blueprints/**
|
|
!scripts/
|
|
!scripts/**
|
|
|
|
# 排除脚本目录中的非测试文件
|
|
scripts/prlcc-watchdog.sh
|
|
|
|
# 生成数据 / 大文件(不跟踪)
|
|
backstop_data/
|
|
baselines/
|
|
node_modules/
|
|
*.log
|