Skip to content

Commit 3ec577f

Browse files
Merge pull request #1062 from skyclouds2001/dev
Dev
2 parents 8384858 + 821d6e8 commit 3ec577f

11 files changed

+220
-157
lines changed

.github/labeler.yml

Whitespace-only changes.

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: ci
22

33
on:
44
push:
5-
branches: ['master']
5+
branches:
6+
- master
67
pull_request:
7-
branches: ['master']
8+
branches:
9+
- master
810

911
jobs:
1012
lint:

.github/workflows/labeler.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: labeler
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
permissions:
9+
contents: read
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
stale:
15+
timeout-minutes: 60
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/labeler@v5
19+
with:
20+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/stale.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: stale
2+
3+
on:
4+
schedule:
5+
- cron: '30 1 * * *'
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
11+
jobs:
12+
stale:
13+
timeout-minutes: 60
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v9
17+
with:
18+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
19+
stale-pr-message: 'This pr is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
20+
days-before-stale: 30
21+
days-before-close: 5

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18
1+
20

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# vite-vue-template-sky
22

3-
## 0.0.0
3+
## 1.0.0
44

55
### Patch Changes
66

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
44
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)
5+
[![wakatime](https://wakatime.com/badge/user/bfadeccb-56c3-4aa2-abb0-89cf5f9b89be/project/f55cfd82-5efd-4c1a-b798-fac0f65900f7.svg)](https://wakatime.com/badge/user/bfadeccb-56c3-4aa2-abb0-89cf5f9b89be/project/f55cfd82-5efd-4c1a-b798-fac0f65900f7)
56
[![ci](https://github.com/skyclouds2001/vite-vue-template-sky/actions/workflows/ci.yml/badge.svg)](https://github.com/skyclouds2001/vite-vue-template-sky/actions/workflows/ci.yml)
67

78
An opinionated vite starter template for Vue.

netlify.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[[redirects]]
2+
from = "/*"
3+
to = "/index.html"
4+
status = 200
5+
6+
[build]
7+
command = "npm run build"
8+
publish = "dist"

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vite-vue-template-sky",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "1.0.0",
55
"description": "an opinionated vite starter template for vue",
66
"keywords": [
77
"template",
@@ -96,21 +96,21 @@
9696
"@tailwindcss/aspect-ratio": "^0.4.2",
9797
"@tailwindcss/container-queries": "^0.1.1",
9898
"@tailwindcss/forms": "^0.5.7",
99-
"@tailwindcss/typography": "^0.5.10",
99+
"@tailwindcss/typography": "^0.5.11",
100100
"@testing-library/vue": "^8.0.3",
101101
"@types/lodash-es": "^4.17.12",
102102
"@types/mockjs": "^1.0.10",
103103
"@types/node": "^20.11.30",
104-
"@typescript-eslint/eslint-plugin": "^7.3.1",
105-
"@typescript-eslint/parser": "^7.3.1",
104+
"@typescript-eslint/eslint-plugin": "^7.4.0",
105+
"@typescript-eslint/parser": "^7.4.0",
106106
"@vitejs/plugin-legacy": "^5.3.2",
107107
"@vitejs/plugin-vue": "^5.0.4",
108108
"@vitejs/plugin-vue-jsx": "^3.1.0",
109109
"@vitest/coverage-v8": "^1.4.0",
110110
"@vitest/ui": "^1.4.0",
111111
"commitizen": "^4.3.0",
112112
"cross-env": "^7.0.3",
113-
"cssnano": "^6.1.1",
113+
"cssnano": "^6.1.2",
114114
"cz-conventional-changelog": "^3.3.0",
115115
"eslint": "^8.57.0",
116116
"eslint-config-prettier": "^9.1.0",
@@ -124,8 +124,8 @@
124124
"eslint-plugin-prettier": "^5.1.3",
125125
"eslint-plugin-promise": "^6.1.1",
126126
"eslint-plugin-testing-library": "^6.2.0",
127-
"eslint-plugin-vitest": "^0.3.26",
128-
"eslint-plugin-vue": "^9.23.0",
127+
"eslint-plugin-vitest": "^0.4.0",
128+
"eslint-plugin-vue": "^9.24.0",
129129
"husky": "^9.0.11",
130130
"is-ci": "^3.0.1",
131131
"jsdom": "^24.0.0",
@@ -142,17 +142,17 @@
142142
"prettier-plugin-tailwindcss": "^0.5.12",
143143
"rimraf": "^5.0.5",
144144
"rollup-plugin-visualizer": "^5.12.0",
145-
"stylelint": "^16.2.1",
145+
"stylelint": "^16.3.1",
146146
"stylelint-config-recess-order": "^5.0.0",
147147
"stylelint-config-standard": "^36.0.0",
148148
"stylelint-config-standard-vue": "^1.0.0",
149149
"tailwindcss": "^3.4.1",
150150
"typescript": "^5.4.3",
151151
"unplugin-element-plus": "^0.8.0",
152-
"vite": "^5.2.3",
152+
"vite": "^5.2.6",
153153
"vite-plugin-checker": "^0.6.4",
154154
"vite-plugin-mock": "^3.0.1",
155-
"vite-plugin-pwa": "^0.19.6",
155+
"vite-plugin-pwa": "^0.19.7",
156156
"vitest": "^1.4.0",
157157
"vue-tsc": "^2.0.7"
158158
}

0 commit comments

Comments
 (0)