@workbench-stack/core
Advanced tools
Comparing version 0.0.27-alpha.342 to 0.0.27-alpha.348
@@ -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 @@ |
@@ -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); |
@@ -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
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
2850150
55580