Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: .js->.mjs in install scripts
  • Loading branch information
jcassidyav committed Oct 25, 2025
commit 522741d8fdcda1272ac806a2bcab1dcfcc9d41cd
4 changes: 2 additions & 2 deletions content/guide/hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ Add the postinstall and preuninstall scripts:
```json
{
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
"postinstall": "node postinstall.mjs",
"preuninstall": "node preuninstall.mjs"
}
}
```
Expand Down