obsidian-plugin-config
Version:
Système d'injection pour plugins Obsidian autonomes
52 lines (38 loc) β’ 2.17 kB
text/typescript
#!/usr/bin/env tsx
console.log(`
π― Obsidian Plugin - Aide Rapide
Commandes disponibles dans ce plugin autonome
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π COMMANDES PRINCIPALES
DΓVELOPPEMENT:
yarn start # Install dependencies + start dev
yarn dev # Build dev mode avec hot reload
yarn build # Build production
yarn real # Build + install dans vault rΓ©el
yarn lint, lint:fix # ESLint vΓ©rification/correction
VERSION & RELEASE:
yarn v, update-version # Update version (package.json + manifest.json)
yarn release, r # Create GitHub release avec tag
GIT OPERATIONS:
yarn acp # Add, commit, push (avec Git sync)
yarn bacp # Build + add, commit, push
yarn run help, h # Cette aide
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π WORKFLOW TYPIQUE
1. yarn start # Setup initial
2. yarn dev # DΓ©veloppement quotidien
3. yarn build # Test build production
4. yarn v # Update version
5. yarn release # Publier release GitHub
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
βοΈ CONFIGURATION
ENVIRONNEMENT:
- Γditer .env pour dΓ©finir TEST_VAULT et REAL_VAULT
- Scripts autonomes (pas de dΓ©pendance externe)
- VΓ©rification Git sync automatique avant push
PLUGIN AUTONOME:
β
Scripts locaux indΓ©pendants
β
Configuration TypeScript et ESLint intΓ©grΓ©e
β
Workflows GitHub Actions avec Yarn
β
Aucune dΓ©pendance vers obsidian-plugin-config
`);