Skip to content

Commit 1fd5070

Browse files
committed
Linter
1 parent 61dca6f commit 1fd5070

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ipyleaflet
66
jupyter-client
77
jupyter-packaging
88
jupyterlab >=4
9-
jupyterlite-core >=0.3.0<0.4.0
10-
jupyterlite-pyodide-kernel >=0.3.0<0.4.0
9+
jupyterlite-core >=0.3.0,<0.4.0
10+
jupyterlite-pyodide-kernel >=0.3.0,<0.4.0
1111
matplotlib
1212
myst-nb >=0.17,<0.18
1313
numpy

packages/html-manager/scripts/concat-amd-build.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
var fs = require('fs');
55

66
// Make a script file that defines all of the relevant AMD modules
7-
var files = ['base.js', 'controls.js', 'base7.js', 'controls7.js', 'index.js', 'libembed-amd.js'];
7+
var files = [
8+
'base.js',
9+
'controls.js',
10+
'base7.js',
11+
'controls7.js',
12+
'index.js',
13+
'libembed-amd.js',
14+
];
815
var output = files
916
.map((f) => {
1017
return fs.readFileSync('./dist/amd/' + f).toString();

packages/html-manager/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export function requirePromise(pkg: string | string[]): Promise<any> {
1212
require(pkg, resolve, reject);
1313
}
1414
});
15-
};
15+
}

0 commit comments

Comments
 (0)