Skip to content

Commit 74264a5

Browse files
committed
chore: bump (dev)Dependencies
1 parent 2d7fb1b commit 74264a5

File tree

15 files changed

+5811
-4641
lines changed

15 files changed

+5811
-4641
lines changed

.codesanbox/ci.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"node": "16",
2+
"node": "18",
33
"packages": [
44
"packages/*"
55
],

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ jobs:
1010
strategy:
1111
matrix:
1212
node:
13-
- 14
14-
- 16
1513
- 18
14+
- 20
1615
runs-on: ubuntu-latest
1716
steps:
1817
- name: Checkout Repo
19-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
2019

2120
- name: Setup Node.js ${{ matrix.node }}
22-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2322
with:
2423
node-version: ${{ matrix.node }}
2524
cache: yarn

.github/workflows/codeql.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
schedule:
11+
- cron: '16 10 * * 6'
12+
13+
jobs:
14+
analyze:
15+
name: Analyze
16+
runs-on: ubuntu-latest
17+
permissions:
18+
actions: read
19+
contents: read
20+
security-events: write
21+
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
language:
26+
- javascript
27+
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
32+
- name: Initialize CodeQL
33+
uses: github/codeql-action/init@v3
34+
with:
35+
languages: ${{ matrix.language }}
36+
queries: +security-and-quality
37+
38+
- name: Autobuild
39+
uses: github/codeql-action/autobuild@v3
40+
41+
- name: Perform CodeQL Analysis
42+
uses: github/codeql-action/analyze@v3
43+
with:
44+
category: '/language:${{ matrix.language }}'

.github/workflows/pkg-size.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

17-
- name: Setup Node.js
18-
uses: actions/setup-node@v3
17+
- name: Setup Node.js LTS
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: lts/*
2121

2222
- name: Package Size Report
2323
uses: pkg-size/action@v1

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup Node.js 16
20-
uses: actions/setup-node@v2
19+
- name: Setup Node.js LTS
20+
uses: actions/setup-node@v4
2121
with:
22-
node-version: 16
22+
node-version: lts/*
2323
cache: yarn
2424

2525
- name: Install Dependencies

.prettierrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"@1stg/prettier-config/vue"
1+
"@1stg/prettier-config/vue.js"

.stylelintignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ LICENSE
44
*.json
55
*.lock
66
*.log
7+
*.ts
78
*.tsbuildinfo
89
*.yaml
910
*.yml

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
</p>
1212

1313
[![GitHub Actions](https://github.com/rx-ts/eslint/workflows/CI/badge.svg)](https://github.com/rx-ts/eslint/actions/workflows/ci.yml)
14-
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/rx-ts/vue.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rx-ts/vue/context:javascript)
1514
[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Frx-ts%2Fvue%2Fmaster%2Fpackage.json)](https://github.com/plantain-00/type-coverage)
1615
[![GitHub release](https://img.shields.io/github/release/rx-ts/vue)](https://github.com/rx-ts/vue/releases)
1716

index.md

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
</p>
1212

1313
[![GitHub Actions](https://github.com/rx-ts/eslint/workflows/CI/badge.svg)](https://github.com/rx-ts/eslint/actions/workflows/ci.yml)
14-
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/rx-ts/vue.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/rx-ts/vue/context:javascript)
1514
[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Frx-ts%2Fvue%2Fmaster%2Fpackage.json)](https://github.com/plantain-00/type-coverage)
1615
[![GitHub release](https://img.shields.io/github/release/rx-ts/vue)](https://github.com/rx-ts/vue/releases)
1716

package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"workspaces": [
1010
"packages/*"
1111
],
12-
"packageManager": "[email protected].19",
12+
"packageManager": "[email protected].21",
1313
"scripts": {
1414
"build": "run-p build:*",
1515
"build:r": "r -e named -f cjs",
@@ -28,30 +28,30 @@
2828
"typecov": "type-coverage"
2929
},
3030
"devDependencies": {
31-
"@1stg/app-config": "^7.2.1",
32-
"@1stg/lib-config": "^10.2.1",
33-
"@changesets/changelog-github": "^0.4.6",
34-
"@changesets/cli": "^2.24.4",
31+
"@1stg/app-config": "^10.0.1",
32+
"@1stg/lib-config": "^13.0.0",
33+
"@changesets/changelog-github": "^0.5.0",
34+
"@changesets/cli": "^2.27.1",
3535
"@d-ts/vue": "^1.0.0",
36-
"@types/lodash-es": "^4.17.6",
37-
"@types/node": "^18.7.18",
38-
"@types/qrcode": "^1.5.0",
36+
"@types/lodash-es": "^4.17.12",
37+
"@types/node": "^18.19.8",
38+
"@types/qrcode": "^1.5.5",
3939
"lodash-es": "^4.17.21",
40-
"postcss": "^8.4.16",
41-
"qrcode": "^1.5.1",
40+
"postcss": "^8.4.33",
41+
"qrcode": "^1.5.3",
4242
"qrious": "^4.0.2",
43-
"rimraf": "^3.0.2",
44-
"rxjs": "^7.5.6",
45-
"sass": "^1.54.9",
46-
"type-coverage": "^2.22.0",
47-
"typescript": "^4.8.3",
43+
"rimraf": "^5.0.5",
44+
"rxjs": "^7.8.1",
45+
"sass": "^1.70.0",
46+
"type-coverage": "^2.27.1",
47+
"typescript": "^5.3.3",
4848
"vitepress": "^0.22.4",
49-
"vue": "^3.2.39",
50-
"vue-tsc": "^0.40.13",
51-
"yarn-deduplicate": "^6.0.0"
49+
"vue": "^3.4.15",
50+
"vue-tsc": "^1.8.27",
51+
"yarn-deduplicate": "^6.0.2"
5252
},
5353
"resolutions": {
54-
"prettier": "^2.7.1"
54+
"prettier": "^3.2.4"
5555
},
5656
"typeCoverage": {
5757
"atLeast": 100,

packages/vue-qrcode/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export default defineComponent({
9292
it =>
9393
typeof it.data === 'string' &&
9494
'mode' in it &&
95+
it.mode &&
9596
MODES.includes(it.mode),
9697
)
9798
},

packages/vue-qrcode/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"vue"
2727
],
2828
"peerDependencies": {
29-
"qrcode": "^1.5.0",
29+
"qrcode": "^1.0.0",
3030
"vue": "^2.7.0 || ^3.0.0"
3131
},
3232
"dependencies": {
33-
"tslib": "^2.4.0"
33+
"tslib": "^2.6.2"
3434
},
3535
"publishConfig": {
3636
"access": "public"

packages/vue-qrious/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { type PropType, defineComponent, h, ref, watch } from 'vue'
33

44
export const LEVELS = ['L', 'M', 'Q', 'H'] as const
55

6-
export type Level = typeof LEVELS[number]
6+
export type Level = (typeof LEVELS)[number]
77

88
export default defineComponent({
99
props: {

packages/vue-qrious/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"vue": "^2.7.0 || ^3.0.0"
3535
},
3636
"dependencies": {
37-
"tslib": "^2.4.0"
37+
"tslib": "^2.6.2"
3838
},
3939
"publishConfig": {
4040
"access": "public"

0 commit comments

Comments
 (0)