-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change build environment to jupyterlab
- Loading branch information
Showing
12 changed files
with
13,857 additions
and
24,745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require("@jupyterlab/testutils/lib/babel.config"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"packageManager": "python", | ||
"packageName": "e2xgrader", | ||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package e2xgrader" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
const jestJupyterLab = require("@jupyterlab/testutils/lib/jest-config"); | ||
|
||
const esModules = [ | ||
"@codemirror", | ||
"@jupyter/ydoc", | ||
"@jupyterlab/", | ||
"lib0", | ||
"nanoid", | ||
"vscode-ws-jsonrpc", | ||
"y-protocols", | ||
"y-websocket", | ||
"yjs", | ||
].join("|"); | ||
|
||
const baseConfig = jestJupyterLab(__dirname); | ||
|
||
module.exports = { | ||
...baseConfig, | ||
automock: false, | ||
collectCoverageFrom: [ | ||
"src/**/*.{ts,tsx}", | ||
"!src/**/*.d.ts", | ||
"!src/**/.ipynb_checkpoints/*", | ||
], | ||
coverageReporters: ["lcov", "text"], | ||
testRegex: "src/.*/.*.spec.ts[x]?$", | ||
transformIgnorePatterns: [`/node_modules/(?!${esModules}).+`], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"useNx": true, | ||
"useWorkspaces": true, | ||
"version": "0.3.0" | ||
"version": "independent", | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json" | ||
} |
Oops, something went wrong.