Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jupyterlab/coreutils

Package Overview
Dependencies
Maintainers
14
Versions
355
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/coreutils - npm Package Compare versions

Comparing version 2.1.4 to 2.2.1-alpha.0

LICENSE

0

lib/activitymonitor.d.ts

@@ -0,0 +0,0 @@ import { IDisposable } from '@phosphor/disposable';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { IDataConnector } from './interfaces';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ export * from './activitymonitor';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { JSONObject } from '@phosphor/coreutils';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

10

lib/pageconfig.js

@@ -53,5 +53,11 @@ "use strict";

const cli = minimist_1.default(process.argv.slice(2));
const path = require('path');
let fullPath = '';
if ('jupyter-config-data' in cli) {
const path = require('path');
const fullPath = path.resolve(cli['jupyter-config-data']);
fullPath = path.resolve(cli['jupyter-config-data']);
}
else if ('JUPYTER_CONFIG_DATA' in process.env) {
fullPath = path.resolve(process.env['JUPYTER_CONFIG_DATA']);
}
if (fullPath) {
/* tslint:disable */

@@ -58,0 +64,0 @@ // Force Webpack to ignore this require.

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { JSONObject, JSONValue, ReadonlyJSONObject, Token } from '@phosphor/coreutils';

@@ -0,0 +0,0 @@ "use strict";

@@ -72,2 +72,5 @@ import { ReadonlyJSONObject, ReadonlyJSONValue, Token } from '@phosphor/coreutils';

constructor(options: StateDB.IOptions);
/**
* A signal that emits the change type any time a value changes.
*/
readonly changed: ISignal<this, StateDB.Change>;

@@ -74,0 +77,0 @@ /**

@@ -52,2 +52,5 @@ "use strict";

}
/**
* A signal that emits the change type any time a value changes.
*/
get changed() {

@@ -54,0 +57,0 @@ return this._changed;

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { JSONObject } from '@phosphor/coreutils';

@@ -0,0 +0,0 @@ "use strict";

{
"name": "@jupyterlab/coreutils",
"version": "2.1.4",
"version": "2.2.1-alpha.0",
"description": "JupyterLab - Core Utilities",

@@ -26,6 +26,7 @@ "homepage": "https://github.com/jupyterlab/jupyterlab",

"scripts": {
"build": "tsc",
"build": "tsc -b src",
"clean": "rimraf lib",
"docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
"prepublishOnly": "npm run build",
"watch": "tsc -w --listEmittedFiles"
"watch": "tsc -b src --watch"
},

@@ -48,4 +49,6 @@ "dependencies": {

"rimraf": "~2.6.2",
"typescript": "~2.9.2"
}
"typedoc": "~0.12.0",
"typescript": "~3.1.1"
},
"gitHead": "9d6193d318872a4a3600ee96fe6f3996312ffe07"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc