Skip to content

Commit a8d2d38

Browse files
authored
Merge branch 'cdmoro:main' into main
2 parents a9491b4 + a7e52b9 commit a8d2d38

File tree

12 files changed

+311
-302
lines changed

12 files changed

+311
-302
lines changed

.github/workflows/release-please.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
name: release-please
6+
jobs:
7+
release-please:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: google-github-actions/release-please-action@v3
11+
with:
12+
release-type: node
13+
package-name: release-please-action

babel.config.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,19 @@
3939
"test:lint": "npm run lint",
4040
"test:unit": "vitest",
4141
"publish": "npm publish --tag develop",
42-
"release": "standard-version"
42+
"prepare": "husky install && npm run build"
4343
},
4444
"dependencies": {
45-
"core-js": "3.x.x"
45+
"vue": "3.x.x"
4646
},
4747
"peerDependencies": {
4848
"bootstrap": "5.x.x"
4949
},
5050
"devDependencies": {
51-
"@babel/core": "7.x.x",
52-
"@babel/plugin-transform-runtime": "7.x.x",
53-
"@babel/preset-env": "7.x.x",
5451
"@types/bootstrap": "5.x.x",
5552
"@typescript-eslint/eslint-plugin": "5.x.x",
5653
"@typescript-eslint/parser": "5.x.x",
5754
"@vitejs/plugin-vue": "2.x.x",
58-
"@vue/compiler-sfc": "3.x.x",
5955
"@vue/eslint-config-typescript": "10.x.x",
6056
"@vue/test-utils": "^2.0.0-rc.18",
6157
"eslint": "8.x.x",
@@ -67,14 +63,13 @@
6763
"jsdom": "^19.0.0",
6864
"lint-staged": "12.x.x",
6965
"prettier": "^2.3.2",
66+
"release-please": "^13.18.7",
7067
"rollup-plugin-visualizer": "5.x.x",
7168
"sass": "1.x.x",
72-
"standard-version": "^9.3.2",
7369
"typescript": "4.x.x",
7470
"vite": "2.x.x",
7571
"vite-plugin-dts": "1.x.x",
7672
"vitest": "^0.10.4",
77-
"vue": "3.x.x",
7873
"vue-router": "4.x.x",
7974
"vue-tsc": "^0.37.2"
8075
},

src/App.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@
133133

134134
<h5 class="mt-3">None</h5>
135135
<b-card>
136-
<b-skeleton width="85%"></b-skeleton>
137-
<b-skeleton width="55%"></b-skeleton>
138-
<b-skeleton width="70%"></b-skeleton>
136+
<b-skeleton animation width="85%"></b-skeleton>
137+
<b-skeleton animation width="55%"></b-skeleton>
138+
<b-skeleton animation width="70%"></b-skeleton>
139139
</b-card>
140140
<b-table-simple responsive>
141141
<b-thead>
@@ -2087,8 +2087,8 @@ export default defineComponent({
20872087
)
20882088
}
20892089

2090-
const tagValidator = (tag: string | undefined) =>
2091-
!!tag && tag === tag.toLowerCase() && tag.length > 2 && tag.length < 6
2090+
const tagValidator = (tag: string) =>
2091+
tag === tag.toLowerCase() && tag.length > 2 && tag.length < 6
20922092

20932093
function onTagState(valid: string[], invalid: string[], duplicate: string[]) {
20942094
// console.log({

src/components/BFormTags/BFormTags.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ interface BFormTagsProps {
141141
tagPills?: boolean
142142
tagRemoveLabel?: string
143143
tagRemovedLabel?: string
144-
tagValidator?: (t?: string) => boolean
144+
tagValidator?: (t: string) => boolean
145145
tagVariant?: ColorVariant
146146
}
147147

src/components/BSkeleton/BSkeleton.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ const props = withDefaults(defineProps<BSkeletonProps>(), {
2323
2424
const classes = computed(() => [
2525
`b-skeleton-${props.type}`,
26-
`b-skeleton-animate-${props.animation}`,
2726
{
27+
[`b-skeleton-animate-${props.animation}`]:
28+
typeof props.animation === 'boolean' ? undefined : props.animation,
2829
[`bg-${props.variant}`]: props.variant,
2930
},
3031
])

0 commit comments

Comments
 (0)