Skip to content

Commit

Permalink
chore: bump all upgradable (dev)Dependencies except @pkgr/rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Dec 26, 2023
1 parent b3e91c3 commit 2b548e9
Show file tree
Hide file tree
Showing 9 changed files with 799 additions and 832 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
cache: yarn --ignore-engines

- name: Install Dependencies
run: yarn --frozen-lockfile
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: 'CodeQL'
name: CodeQL

on:
push:
branches: ['master']
branches:
- master
pull_request:
branches: ['master']
branches:
- master
schedule:
- cron: '4 21 * * 3'

Expand All @@ -20,11 +22,12 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [javascript]
language:
- javascript

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/pkg-size.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Package Size Report

on:
pull_request:
branches:
- master
- pull_request

jobs:
pkg-size-report:
Expand All @@ -12,12 +10,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
- name: Setup Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 16
node-version: lts/*
cache: yarn

- name: Package Size Report
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js 16
uses: actions/setup-node@v3
- name: Setup Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 16
node-version: lts/*
cache: yarn

- name: Install Dependencies
run: yarn --frozen-lockfile

# `@pkgr/utils` is used by `@1stg/lint-staged`
- name: Build prerelease
- name: Build
run: yarn build

- name: Create Release Pull Request or Publish to npm
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/common-config": "^9.0.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.8",
"@types/imagemin": "^8.0.1",
"@types/is-glob": "^4.0.2",
"@types/jest": "^29.5.3",
"@types/lodash-es": "^4.17.8",
"@types/micromatch": "^4.0.2",
"@types/node": "^20.4.6",
"jest": "^29.6.2",
"@1stg/common-config": "^9.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/cross-spawn": "^6.0.6",
"@types/debug": "^4.1.12",
"@types/imagemin": "^8.0.5",
"@types/is-glob": "^4.0.4",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"rimraf": "^5.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tsx": "^3.12.7",
"type-coverage": "^2.26.0",
"typescript": "^5.1.6",
"tsx": "^4.7.0",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
Expand Down
4 changes: 2 additions & 2 deletions packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
],
"dependencies": {
"cross-spawn": "^7.0.3",
"open": "^9.1.0",
"open": "^8.4.2 || ^9.1.0 || ^10.0.1",
"picocolors": "^1.0.0",
"tslib": "^2.6.1"
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"dependencies": {
"@pkgr/core": "^0.0.0",
"fast-glob": "^3.3.1",
"fast-glob": "^3.3.2",
"is-glob": "^4.0.3"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@1stg/tsconfig/lib"
"extends": "@1stg/tsconfig/lib.json"
}
Loading

0 comments on commit 2b548e9

Please sign in to comment.