jettypod 4.4.6 → 4.4.7

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.
@@ -7,7 +7,7 @@
7
7
  * 2. Imports database snapshots after checkout
8
8
  */
9
9
 
10
- const { importAll } = require('../lib/db-import');
10
+ const { importAll } = require('jettypod/lib/db-import');
11
11
  const { execSync } = require('child_process');
12
12
 
13
13
  (async () => {
package/hooks/post-merge CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { importAll } = require('../lib/db-import');
3
+ const { importAll } = require('jettypod/lib/db-import');
4
4
 
5
5
  (async () => {
6
6
  try {
package/hooks/pre-commit CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { exportAll } = require('../lib/db-export');
3
+ const { exportAll } = require('jettypod/lib/db-export');
4
4
  const { execSync } = require('child_process');
5
5
 
6
6
  (async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.6",
3
+ "version": "4.4.7",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {