skalpel 4.0.3 → 4.0.4
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/install.mjs +1 -0
- package/package.json +1 -1
package/install.mjs
CHANGED
|
@@ -40,6 +40,7 @@ function stageHookRuntime() {
|
|
|
40
40
|
// this rule and is guarded by the all-or-nothing check below instead).
|
|
41
41
|
// a hook entrypoint staged without a module it imports — the exact 0.3.12–0.3.16 bug shape.
|
|
42
42
|
copyFileSync(join(PKG_DIR, "insights.mjs"), join(HOOKS_DIR, "insights.mjs")); // hooks import ./insights.mjs
|
|
43
|
+
copyFileSync(join(PKG_DIR, "reveal.mjs"), join(HOOKS_DIR, "reveal.mjs")); // both hooks import ./reveal.mjs
|
|
43
44
|
copyFileSync(join(PKG_DIR, "skalpel-hook.mjs"), HOOK_FILE);
|
|
44
45
|
copyFileSync(join(PKG_DIR, "skalpel-hook-session.mjs"), SESSION_FILE);
|
|
45
46
|
copyFileSync(join(PKG_DIR, "incremental-ingest.mjs"), join(HOOKS_DIR, "incremental-ingest.mjs"));
|