New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

phosphide

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phosphide - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

lib/cssreceiver.d.ts

1

lib/index.d.ts

@@ -0,1 +1,2 @@

export * from './cssreceiver';
export * from './dockpanelreceiver';

@@ -2,0 +3,0 @@ export * from './mainpanel';

@@ -12,2 +12,3 @@ /*-----------------------------------------------------------------------------

}
__export(require('./cssreceiver'));
__export(require('./dockpanelreceiver'));

@@ -14,0 +15,0 @@ __export(require('./mainpanel'));

@@ -18,1 +18,5 @@ import { IReceiver } from 'phosphor-plugins';

export declare function createRightReceiver(): IReceiver;
/**
*
*/
export declare function createCSSReceiver(): IReceiver;

@@ -11,2 +11,3 @@ /*-----------------------------------------------------------------------------

var mainpanel_1 = require('./mainpanel');
var cssreceiver_1 = require('./cssreceiver');
var dockpanelreceiver_1 = require('./dockpanelreceiver');

@@ -50,2 +51,10 @@ var menubarreceiver_1 = require('./menubarreceiver');

*/
function createCSSReceiver() {
var main = ensureMainPanel();
return new cssreceiver_1.CSSReceiver(main);
}
exports.createCSSReceiver = createCSSReceiver;
/**
*
*/
var ensureMainPanel = (function () {

@@ -52,0 +61,0 @@ var main = null;

4

package.json
{
"name": "phosphide",
"version": "0.0.1",
"version": "0.0.2",
"description": "Slightly opinionated scaffolding for building plugin-based IDE-style applications.",

@@ -35,3 +35,3 @@ "main": "lib/index.js",

"clean": "rimraf lib && rimraf test/build && rimraf test/coverage",
"build:example": "cd example && npm install && npm run build",
"build:example": "rimraf example/node_modules/phosphide && cd example && npm install && npm run build",
"build:src": "tsc --project src",

@@ -38,0 +38,0 @@ "build": "npm run build:src",

@@ -22,4 +22,9 @@ {

"factory": "createRightReceiver"
},
{
"id": "phosphide:ui:css",
"main": "lib/plugin.js",
"factory": "createCSSReceiver"
}
]
}
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