Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,9 @@ phpstan.neon.dist
phpunit.xml.dist
playwright.config.js
README.md
/third-party/angie/node_modules
/third-party/angie/src
/third-party/angie/tsconfig.json
/third-party/angie/package.json
/third-party/angie/package-lock.json
SECURITY.md
4 changes: 4 additions & 0 deletions classes/class-base.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* @method \Progress_Planner\Page_Types get_page_types()
* @method \Progress_Planner\Rest\Stats get_rest__stats()
* @method \Progress_Planner\Rest\Tasks get_rest__tasks()
* @method \Progress_Planner\Third_Party\Angie\Integration get_third_party__angie__integration()
* @method \Progress_Planner\Todo get_todo()
* @method \Progress_Planner\Utils\Onboard get_utils__onboard()
* @method \Progress_Planner\Utils\Playground get_utils__playground()
Expand Down Expand Up @@ -131,6 +132,9 @@ public function init() {
$this->get_rest__stats();
$this->get_rest__tasks();

// Third-party integrations.
$this->get_third_party__angie__integration();

// Onboarding.
$this->get_utils__onboard();

Expand Down
26 changes: 26 additions & 0 deletions classes/third-party/angie/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Dependencies
node_modules/

# Build outputs
# Ignore all files in dist/ except the bundled MCP server
dist/*
!dist/progress-planner-mcp-server.js

# TypeScript cache
*.tsbuildinfo

# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Environment files
.env
.env.local

# IDE
.vscode/
.idea/
*.swp
*.swo
*~
Loading
Loading