Skip to content

Commit 08875d1

Browse files
authored
Merge branch 'cdmoro:main' into main
2 parents 197ae39 + 515de8c commit 08875d1

File tree

6 files changed

+52
-13
lines changed

6 files changed

+52
-13
lines changed

apps/docs/docs/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ tagline: Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
77
actions:
88
- text: Get Started
99
link: /getting-started/
10-
features:
11-
- title: Simplicity First
12-
details: Minimal setup with markdown-centered project structure helps you focus on writing.
13-
- title: Vue-Powered
14-
details: Enjoy the dev experience of Vue + webpack, use Vue components in markdown, and develop custom themes with Vue.
15-
- title: Performant
16-
details: VitePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded.
10+
# features:
11+
# - title: Simplicity First
12+
# details: Minimal setup with markdown-centered project structure helps you focus on writing.
13+
# - title: Vue-Powered
14+
# details: Enjoy the dev experience of Vue + webpack, use Vue components in markdown, and develop custom themes with Vue.
15+
# - title: Performant
16+
# details: VitePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded.
1717
footer: MIT Licensed | Copyright © 2021-present Carlos Bonadeo
1818
---

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ yarn add bootstrap bootstrap-vue-3
5757

5858
```bash
5959
npm install bootstrap bootstrap-vue-3
60+
```
61+
62+
</CodeGroupItem>
63+
64+
<CodeGroupItem title="PNPM">
65+
66+
```bash
67+
pnpm add bootstrap bootstrap-vue-3
6068
```
6169

6270
</CodeGroupItem>
@@ -99,6 +107,14 @@ yarn add bootstrap bootstrap-vue-3
99107

100108
```bash
101109
npm install bootstrap bootstrap-vue-3
110+
```
111+
112+
</CodeGroupItem>
113+
114+
<CodeGroupItem title="PNPM">
115+
116+
```bash
117+
pnpm add bootstrap bootstrap-vue-3
102118
```
103119

104120
</CodeGroupItem>

apps/playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"dev": "vite",
7+
"dev": "vite --port 5173",
88
"build": "vue-tsc --noEmit && vite build",
99
"preview": "vite preview"
1010
},
@@ -22,4 +22,4 @@
2222
"vite": "^3.0.0",
2323
"vue-tsc": "^0.38.4"
2424
}
25-
}
25+
}

packages/bootstrap-vue-3/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [0.2.0](https://github.com/cdmoro/bootstrap-vue-3/compare/v0.1.21...v0.2.0) (2022-08-01)
4+
5+
6+
### Features
7+
8+
* use pnpm and workspaces, dev duplicate ([bbc7312](https://github.com/cdmoro/bootstrap-vue-3/commit/bbc73120dd7bd29d62a3c44a751375accfdb13c1))
9+
10+
11+
### Bug Fixes
12+
13+
* **#505:** move import into script setup ([d2ee360](https://github.com/cdmoro/bootstrap-vue-3/commit/d2ee36034a7ba0c59c02574b9c2ca51b38a5dde7))
14+
* remove duplicate builtin script ([48c6ac4](https://github.com/cdmoro/bootstrap-vue-3/commit/48c6ac44d2752d6bbc924a724950a1ce20f9e7b6))
15+
16+
17+
### Reverts
18+
19+
* add back in app.vue in /package/bootstrap* ([9e80d24](https://github.com/cdmoro/bootstrap-vue-3/commit/9e80d24dc214eb23304cad8a800e48ea929890ef))
20+
21+
22+
### Miscellaneous Chores
23+
24+
* release 0.2.0 ([c43ece7](https://github.com/cdmoro/bootstrap-vue-3/commit/c43ece7390c25706e097004eeb4cc3525c71f6af))

packages/bootstrap-vue-3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bootstrap-vue-3",
33
"displayName": "BootstrapVue3",
44
"description": "Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript",
5-
"version": "0.1.18",
5+
"version": "0.2.0",
66
"license": "MIT",
77
"main": "./dist/bootstrap-vue-3.umd.js",
88
"module": "./dist/bootstrap-vue-3.es.js",
@@ -23,7 +23,7 @@
2323
"types": "./dist/BootstrapVue.d.ts",
2424
"private": false,
2525
"scripts": {
26-
"dev": "vite",
26+
"dev": "vite --port 5174",
2727
"build": "vue-tsc --noEmit && vite build",
2828
"serve": "vite preview",
2929
"lint": "eslint --ext .js,.vue --ignore-path ../../.gitignore --fix src",

packages/bootstrap-vue-3/vite.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ const config = defineConfig({
6161
],
6262

6363
server: {
64-
host: 'localhost', //this is the default
65-
port: 8080, //this is the default
64+
host: true,
6665
},
6766

6867
test: {

0 commit comments

Comments
 (0)