Skip to content

Commit

Permalink
Merge pull request #148 from UXPin/hotfix-experimental-namespaced-com…
Browse files Browse the repository at this point in the history
…ponents

Hotfix experimental namespaced components
  • Loading branch information
jaroslawsawicki authored Apr 29, 2019
2 parents fe82c30 + 4532fa0 commit e0b08af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/uxpin-merge-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uxpin/merge-cli",
"version": "1.4.0",
"version": "1.4.1",
"description": "The Command-line tool integrates the Design System repository with: https://www.uxpin.com/merge",
"main": "src/index.js",
"bin": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export interface ComponentRevision extends ComponentDefinitionPersistedPart {

export type ComponentDefinitionPersistedPart = Pick<ComponentDefinition, ComponentPersistedProps>;

type ComponentPersistedProps = 'name' | 'info' | 'properties';
type ComponentPersistedProps = 'name' | 'info' | 'properties' | 'namespace';
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export function getComponentsCollection(
componentId,
info: component.info,
name: component.name,
namespace: component.namespace,
properties: component.properties,
revisionId,
};
Expand Down

0 comments on commit e0b08af

Please sign in to comment.