Skip to content

Commit e1d69bb

Browse files
committed
chore: upgrade monorepo
1 parent 9e520f0 commit e1d69bb

File tree

15 files changed

+275
-708
lines changed

15 files changed

+275
-708
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
types: [opened, synchronize]
88
workflow_dispatch:
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
build:
1215
name: Build and Test
@@ -15,7 +18,7 @@ jobs:
1518
fail-fast: false
1619
matrix:
1720
os: [ubuntu-latest, windows-latest, macos-latest]
18-
node-version: [18, 20]
21+
node-version: [18, 20, 22]
1922
runs-on: ${{ matrix.os }}
2023
# To use Remote Caching, uncomment the next lines and follow the steps below.
2124
# env:

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
1010
env:
1111
HUSKY: 0
1212

13+
permissions:
14+
pull-requests: write
15+
contents: write
16+
id-token: write
17+
1318
jobs:
1419
release:
1520
name: Release

package.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"apps/*",
88
"packages/*"
99
],
10-
"packageManager": "pnpm@9.9.0",
10+
"packageManager": "pnpm@9.11.0",
1111
"engines": {
1212
"node": ">=18.0.0"
1313
},
@@ -23,10 +23,10 @@
2323
"publish-packages": "pnpm run test && changeset version && changeset publish",
2424
"release": "changeset",
2525
"_postinstall": "tw-patch install",
26-
"script:init": "tsx scripts/monorepo/init.ts",
27-
"script:sync": "tsx scripts/monorepo/sync.ts",
28-
"script:clean": "tsx scripts/monorepo/clean.ts",
29-
"script:mirror": "tsx scripts/monorepo/binaryMirror.ts"
26+
"script:init": "monorepo init",
27+
"script:sync": "monorepo sync",
28+
"script:clean": "monorepo clean",
29+
"script:mirror": "monorepo mirror"
3030
},
3131
"devDependencies": {
3232
"@changesets/changelog-github": "^0.5.0",
@@ -35,9 +35,9 @@
3535
"@commitlint/config-conventional": "^19.5.0",
3636
"@commitlint/prompt-cli": "^19.5.0",
3737
"@commitlint/types": "^19.5.0",
38-
"@icebreakers/eslint-config": "^0.5.1",
38+
"@icebreakers/eslint-config": "^0.5.2",
39+
"@icebreakers/monorepo": "^0.5.0",
3940
"@icebreakers/stylelint-config": "^0.0.3",
40-
"@pnpm/workspace.find-packages": "^4.0.10",
4141
"@rollup/pluginutils": "^5.1.0",
4242
"@tailwindcss-mangle/core": "workspace:*",
4343
"@tailwindcss-mangle/shared": "workspace:*",
@@ -60,7 +60,6 @@
6060
"@types/set-value": "^4.0.3",
6161
"@vitest/coverage-v8": "~2.0.5",
6262
"astro": "^4.15.7",
63-
"bumpp": "^9.5.2",
6463
"ci-info": "^4.0.0",
6564
"comment-json": "^4.2.5",
6665
"cross-env": "^7.0.3",
@@ -69,11 +68,10 @@
6968
"defu": "^6.1.4",
7069
"del": "^7.1.0",
7170
"eslint": "^9.10.0",
72-
"execa": "^9.3.1",
71+
"execa": "^9.4.0",
7372
"fast-glob": "^3.3.2",
7473
"fs-extra": "^11.2.0",
7574
"get-value": "^3.0.1",
76-
"git-url-parse": "^15.0.0",
7775
"html-minifier-terser": "^7.2.0",
7876
"html-webpack-plugin": "^5.6.0",
7977
"husky": "^9.1.6",
@@ -87,21 +85,18 @@
8785
"normalize-newline": "^4.1.0",
8886
"only-allow": "^1.2.1",
8987
"pathe": "^1.1.2",
90-
"pkg-types": "^1.2.0",
9188
"postcss": "^8.4.47",
9289
"postcss-loader": "^8.1.1",
9390
"postcss7": "npm:postcss@7",
9491
"prettier": "^3.3.3",
9592
"rimraf": "^6.0.1",
9693
"rollup": "^4.21.3",
9794
"set-value": "^4.1.0",
98-
"simple-git": "^3.26.0",
9995
"tailwindcss": "^3.4.12",
10096
"tailwindcss-patch": "workspace:*",
10197
"tailwindcss2": "npm:@tailwindcss/postcss7-compat@^2.2.17",
102-
"ts-node": "^10.9.2",
10398
"tslib": "^2.7.0",
104-
"tsup": "^8.2.4",
99+
"tsup": "^8.3.0",
105100
"tsx": "^4.19.1",
106101
"turbo": "^2.1.2",
107102
"typescript": "^5.6.2",

0 commit comments

Comments
 (0)