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

fix(spectral-config): partially revert ESM #724

Merged
merged 10 commits into from
Aug 14, 2023
Merged

Conversation

kanadgupta
Copy link
Member

@kanadgupta kanadgupta commented Aug 11, 2023

🧰 Changes

Unfortunately the spectral-config ESM migration (see #718) doesn't actually play nicely with Spectral, despite their claim that they support ESM 🤬

In this PR, I mostly converted this package back to CommonJS and instead dynamically imported [email protected], which is ESM-only. That way we can take advantage of the latest version of alex while (hopefully) playing nicely with Spectral. And thanks to #723, vitest handles this mess flawlessly.

I think this can be a non-breaking change (i.e., [email protected]) since the Node 16+ requirements are the same and there are no changes in the way that we load this into Spectral.

🧬 QA & Testing

Honestly I tried npm link-ing this package and... it still didn't work 🙃 the Spectral CLI is still saying we should use a dynamic import, despite that being exactly what we're doing 😵‍💫

CleanShot 2023-08-11 at 15 04 13@2x

I have some skepticism about npm-link though so... it might work if we publish? I'm not super optimistic though. Honestly the current state of the package is totally broken anyways, so it's not like we can break it any further ¯_(ツ)_/¯ if this fails then I'll do a total revert and go back to alex@9.

@kanadgupta kanadgupta added the bug Something isn't working label Aug 11, 2023
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint .",
"test": "vitest run"
"test": "NODE_OPTIONS='--no-deprecation' vitest run"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really despise this, but without it the test output looks like this:

image

Unfortunately it's all or nothing here and there's no way to hide a specific warning (see nodejs/node#40940).

I opened up get-alex/alex#342 which should hopefully address this.

/**
* Ensure that a given string has considerate and inclusive language.
*
* @see {@link https://alexjs.com/}
* @param {string} input
*/
export default function alex(input, options, context) {
module.exports = async function alex(input, options, context) {
const { text } = await import('alex');
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is pretty much the only actual code change in this PR (everything else is pretty much a revert). Since the Spectral CLI (though claiming otherwise) requires us to use CommonJS and alex@11 is ESM, we need to dynamically import alex here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you change this to alex/index.js does that fix that gnarly ESM error that shows up when running tests?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wait what gnarly error are you seeing when running tests 🧐

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one #724 (comment)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh right 🤦🏽 let me see!

@@ -1,5 +1,4 @@
{
"extends": "@readme/eslint-config",
// required for ESM
"rules": { "import/extensions": ["error", "always"] }
"parserOptions": { "ecmaVersion": 2020 }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is required for us to use the dynamic import in packages/spectral-config/src/functions/alex.js. I love JavaScript, perfect ecosystem, no notes, etc etc etc

@@ -1,9 +1,10 @@
import { makeCopy, severityCodes, testRule } from '@ibm-cloud/openapi-ruleset/test/utils/index.js';
import { makeCopy, severityCodes, testRule } from '@ibm-cloud/openapi-ruleset/test/utils';
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need to drop these /index.js chunks because the ESLint config changes required for the dynamic import. another grumbling about JS etc etc etc

@kanadgupta kanadgupta marked this pull request as ready for review August 11, 2023 20:06
@erunion erunion merged commit c4161e3 into main Aug 14, 2023
4 checks passed
@erunion erunion deleted the partially-revert-spectral-esm branch August 14, 2023 16:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

Successfully merging this pull request may close these issues.

None yet

2 participants