Skip to content

Commit 821b3a8

Browse files
committed
fix: add @popperjs/core to peerDependencies
also publish onto latest branch, rather than development
1 parent d7360a1 commit 821b3a8

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/npm-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
run: pnpm test
4040

4141
- name: Publish
42-
run: pnpm publish --tag develop --filter bootstrap-vue-3
42+
run: pnpm publish --filter bootstrap-vue-3
4343
env:
4444
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.github/workflows/release-please.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
if: ${{ contains(steps.release.outputs.paths_released, env.path) }}
6565

6666
- name: Publish
67-
run: pnpm publish --tag develop --filter bootstrap-vue-3
67+
run: pnpm publish --filter bootstrap-vue-3
6868
env:
6969
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
7070
if: ${{ contains(steps.release.outputs.paths_released, env.path) }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ As you may suppose, this library is heavily inspired by **BootstrapVue**, as wel
4444

4545
```console
4646
# NPM
47-
npm i --save bootstrap bootstrap-vue-3
47+
npm i --save bootstrap bootstrap-vue-3 @popperjs/core
4848

4949
# Yarn
50-
yarn add bootstrap bootstrap-vue-3
50+
yarn add bootstrap bootstrap-vue-3 @popperjs/core
5151

5252
# PNPM
53-
pnpm add bootstrap bootstrap-vue-3
53+
pnpm add bootstrap bootstrap-vue-3 @popperjs/core
5454
```
5555

5656
# Contribute & support 🙌

apps/docs/docs/getting-started/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,23 @@ To install this library you can use Yarn or NPM:
4848
<CodeGroupItem title="YARN" active>
4949

5050
```bash
51-
yarn add bootstrap bootstrap-vue-3
51+
yarn add bootstrap bootstrap-vue-3 @popperjs/core
5252
```
5353

5454
</CodeGroupItem>
5555

5656
<CodeGroupItem title="NPM">
5757

5858
```bash
59-
npm install bootstrap bootstrap-vue-3
59+
npm install bootstrap bootstrap-vue-3 @popperjs/core
6060
```
6161

6262
</CodeGroupItem>
6363

6464
<CodeGroupItem title="PNPM">
6565

6666
```bash
67-
pnpm add bootstrap bootstrap-vue-3
67+
pnpm add bootstrap bootstrap-vue-3 @popperjs/core
6868
```
6969

7070
</CodeGroupItem>
@@ -98,23 +98,23 @@ In your Nuxt3 application, install `bootstrap-vue-3`
9898
<CodeGroupItem title="YARN" active>
9999

100100
```bash
101-
yarn add bootstrap bootstrap-vue-3
101+
yarn add bootstrap bootstrap-vue-3 @popperjs/core
102102
```
103103

104104
</CodeGroupItem>
105105

106106
<CodeGroupItem title="NPM">
107107

108108
```bash
109-
npm install bootstrap bootstrap-vue-3
109+
npm install bootstrap bootstrap-vue-3 @popperjs/core
110110
```
111111

112112
</CodeGroupItem>
113113

114114
<CodeGroupItem title="PNPM">
115115

116116
```bash
117-
pnpm add bootstrap bootstrap-vue-3
117+
pnpm add bootstrap bootstrap-vue-3 @popperjs/core
118118
```
119119

120120
</CodeGroupItem>

packages/bootstrap-vue-3/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
},
3535
"peerDependencies": {
3636
"bootstrap": "5.x.x",
37+
"@popperjs/core": "^2.x.x",
3738
"vue": "3.x.x"
3839
},
3940
"devDependencies": {

0 commit comments

Comments
 (0)