Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jul 30, 2024
1 parent 61dca6f commit 1fd5070
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ipyleaflet
jupyter-client
jupyter-packaging
jupyterlab >=4
jupyterlite-core >=0.3.0<0.4.0
jupyterlite-pyodide-kernel >=0.3.0<0.4.0
jupyterlite-core >=0.3.0,<0.4.0
jupyterlite-pyodide-kernel >=0.3.0,<0.4.0
matplotlib
myst-nb >=0.17,<0.18
numpy
Expand Down
9 changes: 8 additions & 1 deletion packages/html-manager/scripts/concat-amd-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
var fs = require('fs');

// Make a script file that defines all of the relevant AMD modules
var files = ['base.js', 'controls.js', 'base7.js', 'controls7.js', 'index.js', 'libembed-amd.js'];
var files = [
'base.js',
'controls.js',
'base7.js',
'controls7.js',
'index.js',
'libembed-amd.js',
];
var output = files
.map((f) => {
return fs.readFileSync('./dist/amd/' + f).toString();
Expand Down
2 changes: 1 addition & 1 deletion packages/html-manager/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export function requirePromise(pkg: string | string[]): Promise<any> {
require(pkg, resolve, reject);
}
});
};
}

0 comments on commit 1fd5070

Please sign in to comment.