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

@workbench-stack/core

Package Overview
Dependencies
Maintainers
4
Versions
320
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@workbench-stack/core - npm Package Compare versions

Comparing version 0.0.27-alpha.342 to 0.0.27-alpha.348

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.0.27-alpha.348](https://github.com/cdmbase/workbench-stack/compare/v0.0.27-alpha.347...v0.0.27-alpha.348) (2020-11-03)
**Note:** Version bump only for package @workbench-stack/core
## [0.0.27-alpha.342](https://github.com/cdmbase/workbench-stack/compare/v0.0.27-alpha.341...v0.0.27-alpha.342) (2020-10-16)

@@ -8,0 +16,0 @@

1

lib/core/workspace/workspace.d.ts

@@ -13,2 +13,3 @@ import { URI } from '@vscode/monaco-editor/esm/vs/base/common/uri';

get id(): string;
get name(): string;
get configuration(): URI | null;

@@ -15,0 +16,0 @@ set configuration(configuration: URI | null);

5

lib/core/workspace/workspace.js

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

}
get name() {
return this._id;
}
get configuration() {

@@ -53,3 +56,3 @@ return this._configuration;

toJSON() {
return { id: this.id, folders: this.folders, configuration: this.configuration };
return { id: this.id, name: this.name, folders: this.folders, configuration: this.configuration };
}

@@ -56,0 +59,0 @@ }

{
"name": "@workbench-stack/core",
"version": "0.0.27-alpha.342",
"version": "0.0.27-alpha.348",
"description": "Workbench core for higher packages to depend on",

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

},
"gitHead": "f01187887bdbd4c6f6075e0f068ec4101d8cdce0"
"gitHead": "6f668fcd1980cb5f3b8558c801cb1d354a346f36"
}

@@ -43,2 +43,6 @@ import { IWorkspaceIdentifier } from '../../interfaces';

get name(): string {
return this._id;
}
get configuration(): URI | null {

@@ -68,3 +72,3 @@ return this._configuration;

toJSON(): IWorkspace {
return { id: this.id, folders: this.folders, configuration: this.configuration };
return { id: this.id, name: this.name, folders: this.folders, configuration: this.configuration };
}

@@ -71,0 +75,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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