pi-win-notify 1.0.12 → 1.0.13
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/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -11,7 +11,7 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
11
11
|
const pkgDir = dirname(__dirname); // pi-win-notify root
|
|
12
12
|
|
|
13
13
|
// Source: where npm hoisted the native module (top-level node_modules)
|
|
14
|
-
const src = join(pkgDir, "..", "..", "@koromix", "koffi-win32-x64");
|
|
14
|
+
const src = join(pkgDir, "..", "..", "node_modules", "@koromix", "koffi-win32-x64");
|
|
15
15
|
// Dest: where koffi expects it (inside pi-win-notify/node_modules)
|
|
16
16
|
const destDir = join(pkgDir, "node_modules", "@koromix");
|
|
17
17
|
const dest = join(destDir, "koffi-win32-x64");
|