Skip to content

Commit 670bd5b

Browse files
modbendermodbender
authored andcommitted
switch name to nuxt-bootstrap-css
1 parent 674e859 commit 670bd5b

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<h1 align="center">
2-
Nuxt Bootstrap
2+
Nuxt Bootstrap CSS
33
</h1>
44

55
<p align="center">
6-
<a href="https://npmjs.com/package/nuxt-bootstrap"><img src="https://img.shields.io/npm/v/nuxt-bootstrap/latest.svg?style=flat&colorA=020420&colorB=00DC82" alt="Nuxt Bootstrap - NPM Package" /></a>
7-
<a href="https://npmjs.com/package/nuxt-bootstrap"><img src="https://img.shields.io/npm/dm/nuxt-bootstrap.svg?style=flat&colorA=020420&colorB=00DC82" alt="Nuxt Bootstrap - NPM Package Downloads" /></a>
8-
<a href="https://npmjs.com/package/nuxt-bootstrap"><img src="https://img.shields.io/npm/l/nuxt-bootstrap.svg?style=flat&colorA=020420&" alt="Nuxt Bootstrap License" /></a>
9-
<a href="https://nuxt.com"><img src="https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js" alt="Nuxt Bootstrap - Nuxt" /></a>
6+
<a href="https://npmjs.com/package/nuxt-bootstrap-css"><img src="https://img.shields.io/npm/v/nuxt-bootstrap-css/latest.svg?style=flat&colorA=020420&colorB=00DC82" alt="Nuxt Bootstrap CSS - NPM Package" /></a>
7+
<a href="https://npmjs.com/package/nuxt-bootstrap-css"><img src="https://img.shields.io/npm/dm/nuxt-bootstrap-css.svg?style=flat&colorA=020420&colorB=00DC82" alt="Nuxt Bootstrap CSS - NPM Package Downloads" /></a>
8+
<a href="https://npmjs.com/package/nuxt-bootstrap-css"><img src="https://img.shields.io/npm/l/nuxt-bootstrap-css.svg?style=flat&colorA=020420&" alt="Nuxt Bootstrap CSS License" /></a>
9+
<a href="https://nuxt.com"><img src="https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js" alt="Nuxt Bootstrap CSS - Nuxt" /></a>
1010
</p>
1111

1212
<p align="center">
1313
Complete Bootstrap integration
1414
</p>
1515

1616
<p align="center">
17-
<img src="https://getbootstrap.com/docs/5.3/assets/brand/bootstrap-logo.svg" alt="Nuxt Bootstrap Performance" />
17+
<img src="https://getbootstrap.com/docs/5.3/assets/brand/bootstrap-logo.svg" alt="Nuxt Bootstrap CSS Performance" />
1818
</p>
1919

2020
-----
2121
- [📖 Official Bootstrap Documentation](https://getbootstrap.com/docs/5.3/getting-started/introduction/)
22-
- [🏀 Online playground](https://stackblitz.com/github/modbender/nuxt-bootstrap?file=playground%2Fapp.vue)
22+
- [🏀 Online playground](https://stackblitz.com/github/modbender/nuxt-bootstrap-css?file=playground%2Fapp.vue)
2323
- [✨ Release Notes](/CHANGELOG.md)
2424

2525
## Features
@@ -31,25 +31,25 @@ Complete Bootstrap integration
3131

3232
## Quick Setup
3333

34-
1. Add `nuxt-bootstrap` dependency to your project
34+
1. Add `nuxt-bootstrap-css` dependency to your project
3535

3636
```bash
3737
# Using pnpm
38-
pnpm add -D nuxt-bootstrap
38+
pnpm add -D nuxt-bootstrap-css
3939

4040
# Using yarn
41-
yarn add --dev nuxt-bootstrap
41+
yarn add --dev nuxt-bootstrap-css
4242

4343
# Using npm
44-
npm install --save-dev nuxt-bootstrap
44+
npm install --save-dev nuxt-bootstrap-css
4545
```
4646

47-
2. Add `nuxt-bootstrap` to the `modules` section of `nuxt.config.ts`
47+
2. Add `nuxt-bootstrap-css` to the `modules` section of `nuxt.config.ts`
4848

4949
```js
5050
export default defineNuxtConfig({
5151
modules: [
52-
'nuxt-bootstrap'
52+
'nuxt-bootstrap-css'
5353
]
5454
})
5555
```
@@ -181,7 +181,7 @@ Complete Bootstrap integration
181181
</template>
182182
```
183183

184-
That's it! You can now use Nuxt Bootstrap in your Nuxt app ✨
184+
That's it! You can now use Nuxt Bootstrap CSS in your Nuxt app ✨
185185
186186
## Development
187187

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "nuxt-bootstrap",
2+
"name": "nuxt-bootstrap-css",
33
"version": "1.0.0",
44
"description": "Quite the hassle to setup bootstrap, so here is the shortcut",
5-
"repository": "modbender/nuxt-bootstrap",
5+
"repository": "modbender/nuxt-bootstrap-css",
66
"license": "MIT",
77
"type": "module",
88
"exports": {

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"name": "nuxt-bootstrap-playground",
3+
"name": "nuxt-bootstrap-css-playground",
44
"type": "module",
55
"scripts": {
66
"dev": "nuxi dev",

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const moduleList = ["bootstrap", "@popperjs/core"];
66

77
export default defineNuxtModule<ModuleOptions>({
88
meta: {
9-
name: "nuxt-bootstrap",
9+
name: "nuxt-bootstrap-css",
1010
configKey: "bootstrap",
1111
},
1212
// Default configuration options of the Nuxt module

src/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export interface ModuleOptions {}
22

3-
declare module "nuxt-bootstrap" {
3+
declare module "nuxt-bootstrap-css" {
44
interface NuxtConfig {
55
bootstrap?: ModuleOptions;
66
}

0 commit comments

Comments
 (0)