@jupyterlab/statedb
Advanced tools
Comparing version 4.0.0-beta.1 to 4.0.0-beta.2
@@ -10,3 +10,5 @@ "use strict"; | ||
*/ | ||
exports.IStateDB = new coreutils_1.Token('@jupyterlab/coreutils:IStateDB'); | ||
exports.IStateDB = new coreutils_1.Token('@jupyterlab/coreutils:IStateDB', `A service for the JupyterLab state database. | ||
Use this if you want to store data that will persist across page loads. | ||
See "state database" for more information.`); | ||
//# sourceMappingURL=tokens.js.map |
{ | ||
"name": "@jupyterlab/statedb", | ||
"version": "4.0.0-beta.1", | ||
"version": "4.0.0-beta.2", | ||
"description": "Package for managing state in Jupyterlab", | ||
@@ -34,20 +34,20 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"test:cov": "jest --collect-coverage", | ||
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand", | ||
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch", | ||
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand", | ||
"test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch", | ||
"watch": "tsc -b --watch" | ||
}, | ||
"dependencies": { | ||
"@lumino/commands": "^2.0.1", | ||
"@lumino/coreutils": "^2.0.0", | ||
"@lumino/disposable": "^2.0.0", | ||
"@lumino/commands": "^2.1.0", | ||
"@lumino/coreutils": "^2.1.0", | ||
"@lumino/disposable": "^2.1.0", | ||
"@lumino/properties": "^2.0.0", | ||
"@lumino/signaling": "^2.0.0" | ||
"@lumino/signaling": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.0.0-beta.1", | ||
"@jupyterlab/testing": "^4.0.0-beta.2", | ||
"@types/jest": "^29.2.0", | ||
"jest": "^29.2.0", | ||
"rimraf": "~3.0.0", | ||
"typedoc": "~0.23.25", | ||
"typescript": "~5.0.2" | ||
"typedoc": "~0.24.1", | ||
"typescript": "~5.0.4" | ||
}, | ||
@@ -54,0 +54,0 @@ "publishConfig": { |
@@ -10,3 +10,8 @@ // Copyright (c) Jupyter Development Team. | ||
*/ | ||
export const IStateDB = new Token<IStateDB>('@jupyterlab/coreutils:IStateDB'); | ||
export const IStateDB = new Token<IStateDB>( | ||
'@jupyterlab/coreutils:IStateDB', | ||
`A service for the JupyterLab state database. | ||
Use this if you want to store data that will persist across page loads. | ||
See "state database" for more information.` | ||
); | ||
@@ -13,0 +18,0 @@ /** |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90471
2383
Updated@lumino/commands@^2.1.0
Updated@lumino/coreutils@^2.1.0
Updated@lumino/disposable@^2.1.0
Updated@lumino/signaling@^2.1.0