Skip to content

Commit 0fc77bb

Browse files
thekarinkatommyip
authored andcommitted
Upgrade to 1.8.1
1 parent 941d36b commit 0fc77bb

File tree

7 files changed

+1194
-607
lines changed

7 files changed

+1194
-607
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<img src="https://img.shields.io/npm/v/bootstrap-icons-vue?color=blue" alt="NPM">
77
</a>
88
<a href="https://icons.getbootstrap.com/">
9-
<img src="https://img.shields.io/badge/Bootstrap%20Icons-1.7.2-blueviolet" alt="Bootstrap Icons">
9+
<img src="https://img.shields.io/badge/Bootstrap%20Icons-1.8.1-blueviolet" alt="Bootstrap Icons">
1010
</a>
1111
<a href="https://github.com/vuejs/vue-next">
1212
<img src="https://img.shields.io/badge/Vue.js-3.x-success" alt="Vue JS">
@@ -17,7 +17,7 @@
1717
1818
This library provides Bootstrap icons as Vue 3.x components.
1919

20-
Built from Bootstrap Icons v1.7.2.
20+
Built from Bootstrap Icons v1.8.1.
2121

2222
## Installation
2323

@@ -33,7 +33,7 @@ Alternatively, you can use them straight from a CDN without installation.
3333

3434
```html
3535
<script src="https://unpkg.com/vue@3.2.23"></script>
36-
<script src="https://unpkg.com/bootstrap-icons-vue@0.8.0"></script>
36+
<script src="https://unpkg.com/bootstrap-icons-vue@1.8.1"></script>
3737
```
3838

3939
## Usage

dev-vite/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"build": "vite build"
77
},
88
"dependencies": {
9-
"vue": "~3"
9+
"vue": "~3.2.31"
1010
},
1111
"devDependencies": {
12-
"@vitejs/plugin-vue": "^1.10.1",
13-
"@vue/compiler-sfc": "^3.2.23",
14-
"vite": "^2.6.14"
12+
"@vitejs/plugin-vue": "^2.2.4",
13+
"@vue/compiler-sfc": "^3.2.31",
14+
"vite": "^2.8.6"
1515
}
1616
}

dev-vite/yarn.lock

Lines changed: 268 additions & 268 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-icons-vue",
3-
"version": "0.8.0",
3+
"version": "1.8.1",
44
"description": "Bootstrap icons as Vue components.",
55
"author": "Thomas Ip <thomas@ipthomas.com>",
66
"license": "MIT",
@@ -31,13 +31,13 @@
3131
"dev:cdn": "http-server -o dev-cdn"
3232
},
3333
"devDependencies": {
34-
"bootstrap-icons": "1.7.2",
35-
"http-server": "^14.0.0",
36-
"rollup": "^2.60.2",
34+
"bootstrap-icons": "1.8.1",
35+
"http-server": "^14.1.0",
36+
"rollup": "^2.70.0",
3737
"rollup-plugin-terser": "^7.0.2",
38-
"rollup-plugin-typescript2": "^0.31.1",
39-
"typescript": "^4.5.2",
40-
"vue": "~3"
38+
"rollup-plugin-typescript2": "^0.31.2",
39+
"typescript": "^4.6.2",
40+
"vue": "~3.2.31"
4141
},
4242
"files": [
4343
"/dist"

src/icons.ts

Lines changed: 588 additions & 4 deletions
Large diffs are not rendered by default.

upgrade.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ BICON_CURRENT="$(version_of 'bootstrap-icons')"
1515

1616
echo "Upgrading from v$LIB_CURRENT to v$LIB_NEXT..."
1717

18-
yarn upgrade || { echo '`yarn upgrade` failed'; exit 1; }
18+
yarn upgrade --latest || { echo '`yarn upgrade` failed'; exit 1; }
1919
yarn build || { echo '`yarn build` failed'; exit 1;}
2020

2121
pushd dev-vite
22-
yarn upgrade || { echo '`yarn upgrade` failed'; exit 1; }
22+
yarn upgrade --latest || { echo '`yarn upgrade` failed'; exit 1; }
2323
popd
2424

2525
BICON_NEXT="$(version_of 'bootstrap-icons')"

0 commit comments

Comments
 (0)