* Update Version to 1.0.11

* Expose in window object as well
This commit is contained in:
Don Jayamanne 2022-10-24 19:32:15 +11:00 коммит произвёл GitHub
Родитель 4f1de3ce18
Коммит 8d1add7f63
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 9 добавлений и 8 удалений

Просмотреть файл

@ -1,8 +1,5 @@
# Changelog
## 1.1.0
* Update version number to 1.1.0.
## 1.0.11
* Ship jQuery and requirejs as pre-load scripts so that all outputs have access to these scripts.

Просмотреть файл

@ -18,7 +18,11 @@ class PostBuildHookWebpackPlugin {
throw new Error('Unable to update require.js');
}
// Ensure jQuery, require and define are globally available.
const declarations = ['globalThis.$ = $;'];
const declarations = [
'globalThis.$ = $;',
'window.$ = $;',
'window.require=window.requirejs=requirejs; window.define=define;'
];
requireFileContents = `${requireFileContents
.replace(invocationDeclaration, fixedInvocationDeclaration)
.replace(undefDeclaration, fixedUndefDeclaration)}\n\n`;
@ -106,7 +110,7 @@ const fixedUndefDeclaration = ` localRequire.undef = function
cleanRegistry(id);
}
} catch (e) {
console.error('require.undef in Notebook Renderer failed', id, e);
console.warn('require.undef in Notebook Renderer failed', id, e);
}
};`;

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "jupyter-renderers",
"version": "1.1.0",
"version": "1.0.11",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "jupyter-renderers",
"version": "1.1.0",
"version": "1.0.11",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {

Просмотреть файл

@ -2,7 +2,7 @@
"name": "jupyter-renderers",
"displayName": "Jupyter Notebook Renderers",
"description": "Renderers for Jupyter Notebooks (with plotly, vega, gif, png, svg, jpeg and other such outputs)",
"version": "1.1.0",
"version": "1.0.11",
"engines": {
"vscode": "^1.73.0-insider"
},