Skip to content

Commit fac6783

Browse files
v3.1.0
1 parent 6dc3b67 commit fac6783

31 files changed

+5356
-217
lines changed

.editorconfig

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

.eslintrc.cjs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* eslint-env node */
2+
require('@rushstack/eslint-patch/modern-module-resolution')
3+
4+
module.exports = {
5+
root: true,
6+
'extends': [
7+
'plugin:vue/vue3-essential',
8+
'eslint:recommended',
9+
'@vue/eslint-config-typescript',
10+
'@vue/eslint-config-prettier/skip-formatting'
11+
],
12+
parserOptions: {
13+
ecmaVersion: 'latest'
14+
}
15+
}

.eslintrc.js

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

.gitignore

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
1-
.DS_Store
2-
node_modules
3-
/dist
4-
5-
# local env files
6-
.env
7-
.env.local
8-
.env.*.local
9-
10-
# Log files
1+
# Logs
2+
logs
3+
*.log
114
npm-debug.log*
125
yarn-debug.log*
136
yarn-error.log*
14-
package-lock.json
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
1519

1620
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
1723
.idea
18-
.vscode
1924
*.suo
2025
*.ntvs*
2126
*.njsproj
2227
*.sln
2328
*.sw?
29+
30+
*.tsbuildinfo

.prettierrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://json.schemastore.org/prettierrc",
3+
"semi": false,
4+
"tabWidth": 2,
5+
"singleQuote": true,
6+
"printWidth": 100,
7+
"trailingComma": "none"
8+
}

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Vue/Bootstrap Boilerplate
1+
# Vue 3 Bootstrap Starter
22

3-
🦾 Starter boilerplate with Vue.js & Bootstrap\
4-
📦 Vue, Bootstrap 5, Vuex, Vue-Router, Sass/Scss, ESLint, Axios\
5-
⌚ Last update: 3/16/2022
3+
🦾 Starter boilerplate with Vue 3 & Bootstrap.
4+
📦 Vue 3, Bootstrap 5, Vue-Router, Pinia, Sass/Scss, ESLint
5+
⌚ Last update: 1/05/2024
66

77
![logo](https://repository-images.githubusercontent.com/217154004/11cb2b80-1edf-11eb-95b8-5b50543ffe63)
88

@@ -11,7 +11,7 @@
1111
Clone project and enter in folder:
1212

1313
```
14-
cd vue-bootstrap-boilerplate
14+
cd vue-bootstrap-starter
1515
```
1616

1717
Run npm install:
@@ -29,8 +29,8 @@ npm run serve
2929
## Built With
3030

3131
- [Vue CLI](https://cli.vuejs.org/) - Standard Tooling for Vue.js Development
32-
- [Vuex](https://vuex.vuejs.org/) - Vuex is a state management pattern + library for Vue.js applications.
3332
- [Vue-Router](https://router.vuejs.org/) - Vue Router is the official router for Vue.js.
33+
- [Pinia](https://router.vuejs.org/) - Pinia is the best state management for Vue.js.
3434
- [Bootstrap](https://getbootstrap.com/) - Build responsive, mobile-first projects on the web with the world’s most popular front-end component library.
3535

3636
## Versioning
@@ -43,4 +43,4 @@ We use [SemVer](http://semver.org/) for versioning.
4343

4444
## License
4545

46-
This project is licensed under the MIT License.
46+
This project is licensed under the MIT License.

babel.config.js

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

env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="vite/client" />

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" href="/favicon.ico">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.ts"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)