Skip to content

Commit

Permalink
Bump version to 3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregg Van Hove committed Oct 16, 2020
1 parent c8ebcff commit 9495225
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bdd"
],
"license": "MIT",
"version": "3.6.1",
"version": "3.6.2",
"repository": {
"type": "git",
"url": "https://github.com/jasmine/jasmine-npm"
Expand Down
31 changes: 31 additions & 0 deletions release_notes/3.6.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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](https://github.com/jasmine/jasmine-npm/issues/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

* Fixes [#162](https://github.com/jasmine/jasmine-npm/issues/162)

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

* See [#153](https://github.com/jasmine/jasmine-npm/issues/153)
* Fixes [#163](https://github.com/jasmine/jasmine-npm/issues/163)
* Fixes [#165](https://github.com/jasmine/jasmine-npm/issues/165)
* See also discussion in [#162](https://github.com/jasmine/jasmine-npm/issues/162)

0 comments on commit 9495225

Please sign in to comment.