@wealthfolio/addon-dev-tools 2.0.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dev-server.js +2 -2
- package/package.json +5 -5
- package/templates/CHANGELOG.md.template +2 -2
package/dev-server.js
CHANGED
|
@@ -262,7 +262,7 @@ class AddonDevServer {
|
|
|
262
262
|
|
|
263
263
|
// Start vite build in watch mode
|
|
264
264
|
const { spawn } = require("child_process");
|
|
265
|
-
this.viteWatcher = spawn("
|
|
265
|
+
this.viteWatcher = spawn("pnpm", ["run", "dev"], {
|
|
266
266
|
cwd: this.config.addonPath,
|
|
267
267
|
stdio: ["ignore", "pipe", "pipe"],
|
|
268
268
|
});
|
|
@@ -342,7 +342,7 @@ function main() {
|
|
|
342
342
|
port,
|
|
343
343
|
addonPath: path.resolve(addonPath),
|
|
344
344
|
manifestPath: path.resolve(addonPath, "manifest.json"),
|
|
345
|
-
buildCommand: "
|
|
345
|
+
buildCommand: "pnpm run build",
|
|
346
346
|
watchPaths: [path.resolve(addonPath, "src"), path.resolve(addonPath, "manifest.json")],
|
|
347
347
|
};
|
|
348
348
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wealthfolio/addon-dev-tools",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Development tools for Wealthfolio addons - hot reload server and CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"test": "echo \"No tests yet\" && exit 0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"cors": "^2.8.
|
|
45
|
-
"
|
|
42
|
+
"chokidar": "^4.0.3",
|
|
43
|
+
"commander": "^14.0.3",
|
|
44
|
+
"cors": "^2.8.6",
|
|
45
|
+
"express": "^4.22.1"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=20.0.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to the {{
|
|
3
|
+
All notable changes to the {{addonName}} addon will be documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
23
|
## [1.0.0] - {{currentDate}}
|
|
24
24
|
|
|
25
25
|
### Added
|
|
26
|
-
- Initial release of {{
|
|
26
|
+
- Initial release of {{addonName}} addon
|
|
27
27
|
- Basic addon functionality and core features
|
|
28
28
|
- Integration with Wealthfolio addon SDK v1.0.0
|
|
29
29
|
- Sidebar navigation integration for easy access
|