Skip to content

Commit

Permalink
fix(components): use package.json as input file to set version on the…
Browse files Browse the repository at this point in the history
… host instead of the whole typescript package (#3302)
  • Loading branch information
oliverschuerch authored Jul 19, 2024
1 parent 712aad0 commit e9f4902
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/serious-pans-flash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@swisspost/design-system-components': patch
---

Updated to the package.json file as input to set the version of the component on the host instead of the whole typescript package :)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Element, Listen, Method, Prop, Watch } from '@stencil/core';
import { version } from 'typescript';
import { version } from '@root/package.json';
import { checkNonEmpty, checkType, debounce } from '@/utils';
import { PostCollapsibleCustomEvent } from '@/components';

Expand Down

0 comments on commit e9f4902

Please sign in to comment.