Skip to content

Commit

Permalink
Merge pull request #263 from it-at-m/beta
Browse files Browse the repository at this point in the history
Release new Version
  • Loading branch information
FabianWilms authored Oct 9, 2024
2 parents 7402570 + 60d0dad commit dbc91e3
Show file tree
Hide file tree
Showing 24 changed files with 3,376 additions and 5,168 deletions.
5 changes: 4 additions & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,14 @@ module.exports = {
},
},
],
"@semantic-release/npm",
["@semantic-release/npm", { pkgRoot: "./dist" }],
[
"@semantic-release/github",
{
assets: [
"package.json",
"README.md",
"dist/**/*.{ts}",
{
path: "dist/muc-patternlab-vue.es.js",
label: "JS distribution",
Expand Down
10 changes: 5 additions & 5 deletions docs/GettingStarted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ In your Webcomponents root you should import the MDE5-CSS and SVG-Sprite for MDE
lang="ts"
setup
>
import customIconsSprite from "@muenchen/muc-patternlab-vue/dist/assets/temporary/custom-icons.svg?raw";
import mucIconsSprite from "@muenchen/muc-patternlab-vue/dist/assets/temporary/muc-icons.svg?raw";
import customIconsSprite from "@muenchen/muc-patternlab-vue/assets/temporary/custom-icons.svg?raw";
import mucIconsSprite from "@muenchen/muc-patternlab-vue/assets/temporary/muc-icons.svg?raw";
</script>

<template>
Expand All @@ -52,9 +52,9 @@ In your Webcomponents root you should import the MDE5-CSS and SVG-Sprite for MDE
</template>

<style>
@import "@muenchen/muc-patternlab-vue/dist/assets/temporary/muenchende-style.css";
@import "@muenchen/muc-patternlab-vue/dist/assets/temporary/custom-style.css";
@import "@muenchen/muc-patternlab-vue/dist/style.css";
@import "@muenchen/muc-patternlab-vue/assets/temporary/muenchende-style.css";
@import "@muenchen/muc-patternlab-vue/assets/temporary/custom-style.css";
@import "@muenchen/muc-patternlab-vue/style.css";
</style>
```

Expand Down
Loading

0 comments on commit dbc91e3

Please sign in to comment.