Skip to content

Commit 0e64369

Browse files
committed
chore(deps): upgrade
1 parent ba92ac1 commit 0e64369

17 files changed

Lines changed: 3283 additions & 2344 deletions

File tree

.dockerignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules
22
.git
33
.gitignore
44
*.md
5-
dist
5+
dist
6+
**/node_modules/

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, windows-latest, macos-latest]
21-
node-version: [18, 20, 22]
21+
node-version: [20, 22, 24]
2222
runs-on: ${{ matrix.os }}
2323
# To use Remote Caching, uncomment the next lines and follow the steps below.
2424
# env:
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 2
3333

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,18 @@ env:
1111
HUSKY: 0
1212

1313
permissions:
14-
pull-requests: write
15-
contents: write
16-
id-token: write
14+
contents: write # to create release (changesets/action)
15+
issues: write # to post issue comments (changesets/action)
16+
pull-requests: write # to create pull request (changesets/action)
17+
id-token: write # to use OpenID Connect token for provenance (changesets/action)
1718

1819
jobs:
1920
release:
2021
name: Release
2122
runs-on: ubuntu-latest
2223
steps:
2324
- name: Checkout Repo
24-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2526

2627
- uses: pnpm/action-setup@v4
2728

.husky/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pnpm dlx commitlint --edit $1
1+
npm run commitlint ${1}

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pnpm lint-staged
1+
npx lint-staged

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
registry=http://registry.npmmirror.com/
1+
# registry=http://registry.npmmirror.com/
22
shamefully-hoist=true
33
git-checks=false
44
hoist-pattern[]=!tailwindcss
5-
auto-install-peers=false
5+
# auto-install-peers=false
66
package-manager-strict=false
77
public-hoist-pattern[]=*@nextui-org/*

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ FROM base AS builder
77
COPY . /usr/src/app
88
WORKDIR /usr/src/app
99
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
10-
RUN pnpm run -r build
11-
RUN pnpm deploy --filter=@icebreakers/foo --prod /prod/foo
12-
RUN pnpm deploy --filter=@icebreakers/bar --prod /prod/bar
10+
RUN pnpm run -r build \
11+
&& pnpm deploy --filter=@icebreakers/foo --prod /prod/foo \
12+
&& pnpm deploy --filter=@icebreakers/bar --prod /prod/bar
1313

1414
FROM base AS foo
1515
COPY --from=builder /prod/foo /prod/foo

commitlint.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { UserConfig } from '@commitlint/types'
2-
// import { RuleConfigSeverity } from '@commitlint/types'
32

43
export default <UserConfig>{
54
extends: ['@commitlint/config-conventional'],

package.json

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "4.0.0",
55
"private": true,
6-
"packageManager": "pnpm@10.13.1",
6+
"packageManager": "pnpm@10.14.0",
77
"engines": {
88
"node": ">=18.0.0"
99
},
@@ -29,7 +29,8 @@
2929
"script:init": "monorepo init",
3030
"script:sync": "monorepo sync",
3131
"script:clean": "monorepo clean",
32-
"script:mirror": "monorepo mirror"
32+
"script:mirror": "monorepo mirror",
33+
"commitlint": "commitlint --edit"
3334
},
3435
"devDependencies": {
3536
"@changesets/changelog-github": "^0.5.1",
@@ -38,57 +39,57 @@
3839
"@commitlint/config-conventional": "^19.8.1",
3940
"@commitlint/prompt-cli": "^19.8.1",
4041
"@commitlint/types": "^19.8.1",
41-
"@icebreakers/eslint-config": "^1.2.5",
42-
"@icebreakers/monorepo": "^1.0.7",
43-
"@icebreakers/stylelint-config": "^1.1.1",
42+
"@icebreakers/eslint-config": "^1.3.4",
43+
"@icebreakers/monorepo": "^1.0.11",
44+
"@icebreakers/stylelint-config": "^1.1.2",
4445
"@rollup/pluginutils": "^5.2.0",
4546
"@tailwindcss-mangle/core": "workspace:*",
4647
"@tailwindcss-mangle/shared": "workspace:*",
4748
"@tsconfig/recommended": "^1.0.10",
4849
"@types/babel__generator": "^7.27.0",
4950
"@types/babel__helper-plugin-utils": "^7.10.3",
50-
"@types/babel__traverse": "^7.20.7",
51+
"@types/babel__traverse": "^7.28.0",
5152
"@types/fs-extra": "^11.0.4",
5253
"@types/get-value": "^3.0.5",
5354
"@types/html-minifier-terser": "^7.0.2",
5455
"@types/klaw": "^3.0.7",
55-
"@types/lint-staged": "^13.3.0",
5656
"@types/lodash": "^4.17.20",
5757
"@types/lodash-es": "^4.17.12",
5858
"@types/micromatch": "^4.0.9",
59-
"@types/node": "^24.1.0",
59+
"@types/node": "^24.2.1",
6060
"@types/resolve": "^1.20.6",
6161
"@types/semver": "^7.7.0",
6262
"@types/set-value": "^4.0.3",
6363
"@vitest/coverage-v8": "~3.2.4",
64-
"astro": "^5.12.3",
64+
"astro": "^5.13.0",
6565
"ci-info": "^4.3.0",
6666
"comment-json": "^4.2.5",
67-
"cross-env": "^7.0.3",
67+
"cross-env": "^10.0.0",
6868
"css-loader": "^7.1.2",
6969
"dedent": "^1.6.0",
7070
"defu": "^6.1.4",
7171
"del": "^8.0.0",
72-
"dotenv": "^17.2.0",
73-
"eslint": "^9.31.0",
72+
"dotenv": "^17.2.1",
73+
"es-toolkit": "^1.39.9",
74+
"eslint": "^9.33.0",
7475
"execa": "^9.6.0",
7576
"fast-glob": "^3.3.3",
76-
"fdir": "^6.4.6",
77-
"fs-extra": "^11.3.0",
77+
"fdir": "^6.5.0",
78+
"fs-extra": "^11.3.1",
7879
"get-value": "^4.0.1",
7980
"html-minifier-terser": "^7.2.0",
80-
"html-webpack-plugin": "^5.6.3",
81+
"html-webpack-plugin": "^5.6.4",
8182
"husky": "^9.1.7",
8283
"klaw": "^4.1.0",
83-
"lint-staged": "^16.1.2",
84+
"lint-staged": "^16.1.5",
8485
"local-pkg": "^1.1.1",
8586
"lodash": "^4.17.21",
8687
"lodash-es": "^4.17.21",
8788
"micromatch": "^4.0.8",
88-
"mini-css-extract-plugin": "^2.9.2",
89+
"mini-css-extract-plugin": "^2.9.4",
8990
"normalize-newline": "^4.1.0",
9091
"only-allow": "^1.2.1",
91-
"openai": "^5.10.2",
92+
"openai": "^5.12.2",
9293
"pathe": "^2.0.3",
9394
"picomatch": "^4.0.3",
9495
"pkg-types": "^2.2.0",
@@ -97,24 +98,24 @@
9798
"postcss7": "npm:postcss@7",
9899
"prettier": "^3.6.2",
99100
"rimraf": "^6.0.1",
100-
"rollup": "^4.45.1",
101+
"rollup": "^4.46.2",
101102
"set-value": "^4.1.0",
102103
"tailwindcss": "catalog:tailwindcss3",
103104
"tailwindcss-patch": "workspace:*",
104105
"tailwindcss2": "npm:@tailwindcss/postcss7-compat@^2.2.17",
105106
"tslib": "^2.8.1",
106107
"tsup": "^8.5.0",
107-
"tsx": "^4.20.3",
108+
"tsx": "^4.20.4",
108109
"turbo": "^2.5.5",
109-
"typescript": "^5.8.3",
110+
"typescript": "^5.9.2",
110111
"unbuild": "^3.6.0",
111112
"unplugin": "^2.3.5",
112113
"unplugin-tailwindcss-mangle": "workspace:*",
113-
"vite": "^7.0.6",
114+
"vite": "^7.1.2",
114115
"vite-tsconfig-paths": "^5.1.4",
115116
"vitest": "~3.2.4",
116-
"webpack": "^5.100.2",
117+
"webpack": "^5.101.2",
117118
"webpack-build-utils": "^0.0.7",
118-
"yaml": "^2.8.0"
119+
"yaml": "^2.8.1"
119120
}
120121
}

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"dependencies": {
6868
"@tailwindcss-mangle/shared": "workspace:^",
6969
"c12": "^2.0.4",
70-
"fs-extra": "^11.3.0",
70+
"fs-extra": "^11.3.1",
7171
"is-css-request": "^1.0.1",
7272
"pathe": "^2.0.3"
7373
}

0 commit comments

Comments
 (0)