Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.9.5 #521

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infermedica/component-library",
"version": "1.9.4",
"version": "1.9.5",
"description": "Vue 3 UI library for healthcare and not only.",
"license": "MIT",
"sideEffects": [
Expand Down
2 changes: 2 additions & 0 deletions scripts/release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import getReleaseInfo from './helpers/get-release-info.mjs';
import updateComponentsApi from './update-components-api.mjs';
import createReleaseNotes from './create-release-notes.mjs';
import createReleaseChangelog from './create-release-changelog.mjs';
import createIconsList from './create-icons-list.mjs';

const exec = util.promisify(child.exec);
const fileName = fileURLToPath(import.meta.url);
Expand All @@ -40,6 +41,7 @@ const release = async (type, withDocs) => {
newVersion, releaseType,
} = await getReleaseInfo(type, true);
if (newVersion) {
await createIconsList();
await updateComponentsApi();
await updatePackageJson(newVersion);
await createReleaseChangelog(newVersion);
Expand Down
2 changes: 2 additions & 0 deletions src/components/atoms/UiIcon/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export default [
'yes',
'warning-filled',
'unknown',
'thumb-up',
'thumb-down',
'tablet',
'symptom-checker',
'success-filled',
Expand Down
Loading