Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert docs and types scripts to .mjs to fix node errors on some platforms #7644

Merged
merged 1 commit into from
Mar 18, 2025

Conversation

davepagurek
Copy link
Contributor

While this was working for me on Mac before, I was getting this warning when running generate-types or docs:

(node:92436) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///Users/dpagurek/Documents/Projects/p5.js-2/utils/convert.js is not specified and it doesn't parse as CommonJS.
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.

Meanwhile, @perminder-17 was getting an actual error from this, even on node 20+, which I was only seeing on node 18:

(node:39622) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(Use `node --trace-warnings ...` to show where the warning was created)
/home/perminder/Desktop/documentation-project/new-one/p5.js/utils/convert.js:1
import fs from 'fs';
^^^^^^

SyntaxError: Cannot use import statement outside a module
    at internalCompileFunction (node:internal/vm:73:18)
    at wrapSafe (node:internal/modules/cjs/loader:1187:20)
    at Module._compile (node:internal/modules/cjs/loader:1231:27)
    at Module._extensions..js (node:internal/modules/cjs/loader:1321:10)
    at Module.load (node:internal/modules/cjs/loader:1125:32)
    at Module._load (node:internal/modules/cjs/loader:965:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:83:12)
    at node:internal/main/run_main_module:23:47

Rather than convert the whole project to a module, which might have downstream implications on the src/ folder, I've just updated the scripts that use import to be .mjs.

@davepagurek davepagurek merged commit 161f41d into dev-2.0 Mar 18, 2025
2 checks passed
@davepagurek davepagurek deleted the mjs branch March 18, 2025 13:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant