jupyter-ijavascript-utils 1.64.0 → 1.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCS.md +1 -0
- package/Dockerfile +1 -1
- package/README.md +1 -0
- package/package.json +2 -1
package/DOCS.md
CHANGED
|
@@ -82,6 +82,7 @@ Additionally, vega has now moved to ESM Modules - [vega versions](https://www.np
|
|
|
82
82
|
iJavaScript only supports ESM Modules with [esm-hook](https://www.npmjs.com/package/esm-hook) - [see issue 210](https://github.com/n-riesco/ijavascript/issues/210)
|
|
83
83
|
|
|
84
84
|
## What's New
|
|
85
|
+
* 1.65 - update module type to explicitly state commonJS
|
|
85
86
|
* 1.64 - using the latest version of vega/vega-lite prior to ESM update
|
|
86
87
|
* 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
|
|
87
88
|
* 1.61 - Docs Updated
|
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -62,6 +62,7 @@ Additionally, vega has now moved to ESM Modules - [vega versions](https://www.np
|
|
|
62
62
|
iJavaScript only supports ESM Modules with [esm-hook](https://www.npmjs.com/package/esm-hook) - [see issue 210](https://github.com/n-riesco/ijavascript/issues/210)
|
|
63
63
|
|
|
64
64
|
# What's New
|
|
65
|
+
* 1.65 - update module type to explicitly state commonJS
|
|
65
66
|
* 1.64 - using the latest version of vega/vega-lite prior to ESM update
|
|
66
67
|
* 1.62 - Update to Array.peekableIterator to include peekItr() as sugar for .peek
|
|
67
68
|
* 1.61 - Docs Updated
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jupyter-ijavascript-utils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.65.0",
|
|
4
4
|
"description": "Utilities for working with iJavaScript - a Jupyter Kernel",
|
|
5
5
|
"homepage": "https://jupyter-ijavascript-utils.onrender.com/",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"type": "commonjs",
|
|
7
8
|
"main": "src/index.js",
|
|
8
9
|
"scripts": {
|
|
9
10
|
"prebuild": "npm run lint && npm run test:coverage",
|