Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.06 KB

3.6.2.md

File metadata and controls

31 lines (19 loc) · 1.06 KB

Jasmine NPM 3.6.2 Release Notes

Summary

This release fixes an issue with load order of helper files introduced by switching globbing libraries

Changes

Added support for ES modules

  • Fixes #150.
  • Specs and helpers with names ending in .mjs are loaded as ES modules (import("foo.mjs")).
  • All other specs and helpers are loaded as CommonJS modules, as before (require("foo.js")).
  • If using ES modules with Node 10 or 11, run node --experimental-modules /path/to/jasmine instead of jasmine.

Switch back to just plain glob for smaller dependency list

Remove code related to multiple workers as it never worked in the first place