@powerhousedao/ph-cli 4.1.0-dev.113 → 4.1.0-dev.115

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.
Files changed (35) hide show
  1. package/dist/src/commands/migrations/migrate.d.ts +3 -0
  2. package/dist/src/commands/migrations/migrate.d.ts.map +1 -0
  3. package/dist/src/commands/migrations/migrate.js +285 -0
  4. package/dist/src/commands/migrations/migrate.js.map +1 -0
  5. package/dist/src/commands/migrations/templates/document-models.d.ts +2 -0
  6. package/dist/src/commands/migrations/templates/document-models.d.ts.map +1 -0
  7. package/dist/src/commands/migrations/templates/document-models.js +6 -0
  8. package/dist/src/commands/migrations/templates/document-models.js.map +1 -0
  9. package/dist/src/commands/migrations/templates/editors.d.ts +2 -0
  10. package/dist/src/commands/migrations/templates/editors.d.ts.map +1 -0
  11. package/dist/src/commands/migrations/templates/editors.js +6 -0
  12. package/dist/src/commands/migrations/templates/editors.js.map +1 -0
  13. package/dist/src/commands/migrations/templates/index.d.ts +2 -0
  14. package/dist/src/commands/migrations/templates/index.d.ts.map +1 -0
  15. package/dist/src/commands/migrations/templates/index.js +7 -0
  16. package/dist/src/commands/migrations/templates/index.js.map +1 -0
  17. package/dist/src/commands/migrations/templates/packageJson.d.ts +55 -0
  18. package/dist/src/commands/migrations/templates/packageJson.d.ts.map +1 -0
  19. package/dist/src/commands/migrations/templates/packageJson.js +55 -0
  20. package/dist/src/commands/migrations/templates/packageJson.js.map +1 -0
  21. package/dist/src/commands/migrations/templates/tsConfig.d.ts +2 -0
  22. package/dist/src/commands/migrations/templates/tsConfig.d.ts.map +1 -0
  23. package/dist/src/commands/migrations/templates/tsConfig.js +45 -0
  24. package/dist/src/commands/migrations/templates/tsConfig.js.map +1 -0
  25. package/dist/src/commands/register-commands.d.ts.map +1 -1
  26. package/dist/src/commands/register-commands.js +2 -0
  27. package/dist/src/commands/register-commands.js.map +1 -1
  28. package/dist/src/services/generate.d.ts +4 -0
  29. package/dist/src/services/generate.d.ts.map +1 -1
  30. package/dist/src/services/generate.js +13 -1
  31. package/dist/src/services/generate.js.map +1 -1
  32. package/dist/src/version.d.ts +1 -1
  33. package/dist/src/version.js +1 -1
  34. package/dist/tsconfig.tsbuildinfo +1 -1
  35. package/package.json +11 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerhousedao/ph-cli",
3
- "version": "4.1.0-dev.113",
3
+ "version": "4.1.0-dev.115",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",
@@ -26,18 +26,21 @@
26
26
  "concurrently": "^9.1.2",
27
27
  "copyfiles": "^2.4.1",
28
28
  "nodemon": "^3.1.9",
29
+ "read-pkg": "^9.0.1",
30
+ "ts-morph": "^26.0.0",
29
31
  "vitest": "^3.2.4",
30
- "document-drive": "4.1.0-dev.113",
31
- "document-model": "4.1.0-dev.113"
32
+ "write-pkg": "^7.0.0",
33
+ "document-drive": "4.1.0-dev.115",
34
+ "document-model": "4.1.0-dev.115"
32
35
  },
33
36
  "dependencies": {
34
37
  "colorette": "^2.0.20",
35
38
  "commander": "^12.1.0",
36
- "@powerhousedao/builder-tools": "4.1.0-dev.113",
37
- "@powerhousedao/common": "4.1.0-dev.113",
38
- "@powerhousedao/switchboard": "4.1.0-dev.113",
39
- "@powerhousedao/config": "4.1.0-dev.113",
40
- "@powerhousedao/codegen": "4.1.0-dev.113"
39
+ "@powerhousedao/builder-tools": "4.1.0-dev.115",
40
+ "@powerhousedao/codegen": "4.1.0-dev.115",
41
+ "@powerhousedao/common": "4.1.0-dev.115",
42
+ "@powerhousedao/config": "4.1.0-dev.115",
43
+ "@powerhousedao/switchboard": "4.1.0-dev.115"
41
44
  },
42
45
  "scripts": {
43
46
  "tsc": "tsc",