Skip to content

Commit

Permalink
Fix: Support for node v23.0.0 (fixes #3618)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfoster authored Oct 21, 2024
1 parent 4982534 commit e98bdeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/helpers/data/Language.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Language {
/** @type {string} */
this.jsonext = jsonext;
/** @type {string} */
this.path = languagePath.replace(/\\/g, '/');
this.path = path.normalize(languagePath).replace(/\\/g, '/');
/** @type {string} */
this.name = this.path.split('/').filter(Boolean).pop();
/** @type {string} */
Expand Down

0 comments on commit e98bdeb

Please sign in to comment.