packages/addon-dev-tools/README.md
Development tools for Wealthfolio addons including hot reload server and CLI.
npm install -g @wealthfolio/addon-dev-tools
wealthfolio create my-awesome-addon
# In your addon directory
wealthfolio dev
wealthfolio build
wealthfolio package
wealthfolio test
The development server provides:
GET /health - Health checkGET /status - Addon status and last modified timeGET /manifest.json - Addon manifestGET /addon.js - Built addon codeGET /files - List of built filesGET /test - Test connectivityAdd to your addon's package.json:
{
"scripts": {
"dev:server": "wealthfolio dev"
},
"devDependencies": {
"@wealthfolio/addon-dev-tools": "^1.0.0"
}
}
This package is separate from @wealthfolio/addon-sdk to:
MIT