fix/chore: Update console.log for user-guide.md install path. Cleaned up config files/folders and updated .gitignore (#347)
* fix: Update console.log for user-guide.md install path Changed IMPORTANT: Please read the user guide installed at docs/user-guilde.md to IMPORTANT: Please read the user guide installed at .bmad-core/user-guide.md WHY: the actual install location of the user-guide.md is in the .bmad-core directory. * chore: remove formatting configs and clean up gitignore - Delete husky pre-commit hook and prettier config files - Remove VS Code chat/copilot settings - Reorganize and clean up gitignore entries
This commit is contained in:
38
.gitignore
vendored
38
.gitignore
vendored
@@ -1,30 +1,44 @@
|
|||||||
# Node modules
|
# Dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
|
package-lock.json
|
||||||
|
pnpm-lock.yaml
|
||||||
|
bun.lock
|
||||||
|
deno.lock
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs/
|
||||||
*.log
|
*.log
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
|
|
||||||
# Build output
|
# Build output
|
||||||
build/*.txt
|
build/*.txt
|
||||||
|
web-bundles/
|
||||||
|
|
||||||
|
# Environment variables
|
||||||
|
.env
|
||||||
|
|
||||||
# System files
|
# System files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
# Environment variables
|
# Development tools and configs
|
||||||
.env
|
.prettierignore
|
||||||
|
.prettierrc
|
||||||
|
.husky/
|
||||||
|
|
||||||
CLAUDE.md
|
# IDE and editor configs
|
||||||
.ai/*
|
|
||||||
test-project-install/*
|
|
||||||
sample-project/*
|
|
||||||
.claude
|
|
||||||
.windsurf/
|
.windsurf/
|
||||||
.trae/
|
.trae/
|
||||||
|
.bmad*/.cursor/
|
||||||
|
|
||||||
|
# AI assistant files
|
||||||
|
CLAUDE.md
|
||||||
|
.ai/*
|
||||||
|
.claude
|
||||||
|
.gemini
|
||||||
|
|
||||||
|
# Project-specific
|
||||||
.bmad-core
|
.bmad-core
|
||||||
.bmad-creator-tools
|
.bmad-creator-tools
|
||||||
.gemini
|
test-project-install/*
|
||||||
.bmad*/.cursor/
|
sample-project/*
|
||||||
web-bundles/
|
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
# Run lint-staged to format and lint YAML files
|
|
||||||
npx lint-staged
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
# Dependencies
|
|
||||||
node_modules/
|
|
||||||
package-lock.json
|
|
||||||
|
|
||||||
# Build outputs
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# Generated files
|
|
||||||
*.log
|
|
||||||
*.lock
|
|
||||||
|
|
||||||
# BMad core files (have their own formatting)
|
|
||||||
bmad-core/**/*.md
|
|
||||||
|
|
||||||
# Specific files that need custom formatting
|
|
||||||
.roomodes
|
|
||||||
CHANGELOG.md
|
|
||||||
|
|
||||||
# IDE files
|
|
||||||
.vscode/
|
|
||||||
.idea/
|
|
||||||
23
.prettierrc
23
.prettierrc
@@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"printWidth": 100,
|
|
||||||
"tabWidth": 2,
|
|
||||||
"useTabs": false,
|
|
||||||
"semi": true,
|
|
||||||
"singleQuote": false,
|
|
||||||
"quoteProps": "as-needed",
|
|
||||||
"trailingComma": "es5",
|
|
||||||
"bracketSpacing": true,
|
|
||||||
"bracketSameLine": false,
|
|
||||||
"arrowParens": "always",
|
|
||||||
"proseWrap": "preserve",
|
|
||||||
"endOfLine": "lf",
|
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"files": "*.md",
|
|
||||||
"options": {
|
|
||||||
"proseWrap": "preserve",
|
|
||||||
"printWidth": 120
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
@@ -1,10 +1,4 @@
|
|||||||
{
|
{
|
||||||
"chat.agent.enabled": true,
|
|
||||||
"chat.agent.maxRequests": 15,
|
|
||||||
"github.copilot.chat.agent.runTasks": true,
|
|
||||||
"chat.mcp.discovery.enabled": true,
|
|
||||||
"github.copilot.chat.agent.autoFix": true,
|
|
||||||
"chat.tools.autoApprove": false,
|
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"Agentic",
|
"Agentic",
|
||||||
"atlasing",
|
"atlasing",
|
||||||
@@ -47,4 +41,4 @@
|
|||||||
"Trae",
|
"Trae",
|
||||||
"VNET"
|
"VNET"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
9396
package-lock.json
generated
9396
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -893,7 +893,7 @@ class Installer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Important notice to read the user guide
|
// Important notice to read the user guide
|
||||||
console.log(chalk.red.bold("\n📖 IMPORTANT: Please read the user guide installed at docs/user-guide.md"));
|
console.log(chalk.red.bold("\n📖 IMPORTANT: Please read the user guide installed at .bmad-core/user-guide.md"));
|
||||||
console.log(chalk.red("This guide contains essential information about the BMad workflow and how to use the agents effectively."));
|
console.log(chalk.red("This guide contains essential information about the BMad workflow and how to use the agents effectively."));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user