obsidian-plugin-config
Version:
Système d'injection pour plugins Obsidian autonomes
52 lines (38 loc) β’ 2.13 kB
text/typescript
#!/usr/bin/env tsx
console.log(`
π― Obsidian Plugin - Quick Help
Available commands in this autonomous plugin
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π MAIN COMMANDS
DEVELOPMENT:
yarn start # Install dependencies + start dev
yarn dev # Build dev mode with hot reload
yarn build # Build production
yarn real # Build + install in real vault
yarn lint, lint:fix # ESLint verification/correction
VERSION & RELEASE:
yarn v, update-version # Update version (package.json + manifest.json)
yarn release, r # Create GitHub release with tag
GIT OPERATIONS:
yarn acp # Add, commit, push (with Git sync)
yarn bacp # Build + add, commit, push
yarn run help, h # This help
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π TYPICAL WORKFLOW
1. yarn start # Initial setup
2. yarn dev # Daily development
3. yarn build # Test production build
4. yarn v # Update version
5. yarn release # Publish GitHub release
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
βοΈ CONFIGURATION
ENVIRONMENT:
- Edit .env to define TEST_VAULT and REAL_VAULT
- Autonomous scripts (no external dependencies)
- Automatic Git sync verification before push
AUTONOMOUS PLUGIN:
β
Independent local scripts
β
Integrated TypeScript and ESLint configuration
β
GitHub Actions workflows with Yarn
β
No dependency on obsidian-plugin-config
`);