Skip to content

Commit 52a083c

Browse files
fix: downgrade glob (Myriad-Dreamin#656)
* build: update angular deps * fix: downgrade glob
1 parent b90fab3 commit 52a083c

File tree

8 files changed

+936
-1111
lines changed

8 files changed

+936
-1111
lines changed

.github/workflows/release-node.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ concurrency:
1414
group: ${{ github.workflow }}-${{ github.ref }}
1515
cancel-in-progress: true
1616
defaults:
17-
run:
18-
working-directory: ./packages/typst.node
17+
run:
18+
working-directory: ./packages/typst.node
1919
jobs:
2020
build:
2121
strategy:
@@ -73,7 +73,7 @@ jobs:
7373
uses: actions/setup-node@v4
7474
if: ${{ !matrix.settings.docker }}
7575
with:
76-
node-version: 20
76+
node-version: 22
7777
cache: yarn
7878
- name: Install
7979
uses: dtolnay/[email protected]
@@ -437,4 +437,4 @@ jobs:
437437
npm publish --verbose --provenance --access public || exit 0
438438
env:
439439
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
440-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
440+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"eslint-plugin-react-hooks": "^4.6.0",
7575
"prettier": "^3.0.2",
7676
"typescript": "=5.6.3",
77-
"vite": "^6.1.0",
77+
"vite": "^6.2.3",
7878
"emnapi": "=1.3.1",
7979
"vite-plugin-banner": "^0.8.0"
8080
}

packages/typst.angular/package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
},
1515
"private": true,
1616
"dependencies": {
17-
"@angular/animations": "^19.1.6",
18-
"@angular/common": "^19.1.6",
19-
"@angular/compiler": "^19.1.6",
20-
"@angular/core": "^19.1.6",
21-
"@angular/forms": "^19.1.6",
22-
"@angular/platform-browser": "^19.1.6",
23-
"@angular/platform-browser-dynamic": "^19.1.6",
24-
"@angular/router": "^19.1.6",
17+
"@angular/animations": "^19.2.4",
18+
"@angular/common": "^19.2.4",
19+
"@angular/compiler": "^19.2.4",
20+
"@angular/core": "^19.2.4",
21+
"@angular/forms": "^19.2.4",
22+
"@angular/platform-browser": "^19.2.4",
23+
"@angular/platform-browser-dynamic": "^19.2.4",
24+
"@angular/router": "^19.2.4",
2525
"rxjs": "~7.8.1",
2626
"tslib": "^2.5.2",
2727
"zone.js": "~0.15.0"
@@ -31,14 +31,14 @@
3131
"@myriaddreamin/typst.ts": "^0.5.5-rc7"
3232
},
3333
"devDependencies": {
34-
"@angular-devkit/build-angular": "^19.1.7",
35-
"@angular-eslint/builder": "19.1.0",
36-
"@angular-eslint/eslint-plugin": "19.1.0",
37-
"@angular-eslint/eslint-plugin-template": "19.1.0",
38-
"@angular-eslint/schematics": "19.1.0",
39-
"@angular-eslint/template-parser": "19.1.0",
40-
"@angular/cli": "~19.1.7",
41-
"@angular/compiler-cli": "^19.1.6",
34+
"@angular-devkit/build-angular": "^19.2.5",
35+
"@angular-eslint/builder": "19.3.0",
36+
"@angular-eslint/eslint-plugin": "19.3.0",
37+
"@angular-eslint/eslint-plugin-template": "19.3.0",
38+
"@angular-eslint/schematics": "19.3.0",
39+
"@angular-eslint/template-parser": "19.3.0",
40+
"@angular/cli": "~19.2.5",
41+
"@angular/compiler-cli": "^19.2.4",
4242
"@myriaddreamin/typst-ts-renderer": "*",
4343
"@myriaddreamin/typst.ts": "*",
4444
"@types/jasmine": "~5.1.6",
@@ -49,7 +49,7 @@
4949
"karma-coverage": "~2.2.0",
5050
"karma-jasmine": "~5.1.0",
5151
"karma-jasmine-html-reporter": "~2.1.0",
52-
"ng-packagr": "^19.1.2",
52+
"ng-packagr": "^19.2.0",
5353
"to-fast-properties": "^4.0.0"
5454
}
5555
}

packages/typst.solid/demo/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"@myriaddreamin/typst.ts": "0.5.5-rc7",
1414
"solid-devtools": "^0.29.3",
1515
"typescript": "^5.6.2",
16-
"vite": "^5.4.8",
17-
"vite-plugin-solid": "^2.10.2"
16+
"vite": "^6.2.3",
17+
"vite-plugin-solid": "^2.11.6"
1818
},
1919
"dependencies": {
2020
"solid-js": "^1.9.1",

packages/typst.solid/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@myriaddreamin/typst-ts-renderer": "0.5.5-rc7",
2525
"@myriaddreamin/typst.ts": "0.5.5-rc7",
2626
"solid-js": "^1.8.22",
27-
"vite-plugin-solid": "^2.10.2"
27+
"vite-plugin-solid": "^2.11.6"
2828
},
2929
"keywords": [
3030
"solidjs",

projects/highlighter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"devDependencies": {
3434
"@myriaddreamin/typst.ts": "*",
3535
"@myriaddreamin/typst-ts-parser": "*",
36-
"vite": "^4.3.9",
37-
"vitest": "^0.32.2"
36+
"vite": "^6.2.3",
37+
"vitest": "^3.0.9"
3838
},
3939
"scripts": {
4040
"dev": "vite",

projects/vite-plugin-typst/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"peerDependencies": {
2323
"@myriaddreamin/typst.node": "^0.5.5-rc6",
24-
"vite": "^4.0.0"
24+
"vite": "^6.2.3"
2525
},
2626
"files": [
2727
"dist/**/*.{mts,mjs,cjs,cts,ts,js}"
@@ -30,7 +30,7 @@
3030
"@types/glob-watcher": "^5.0.5"
3131
},
3232
"dependencies": {
33-
"glob": "^11.0.1",
33+
"glob": "^10.4.5",
3434
"glob-watcher": "^6.0.0"
3535
}
3636
}

0 commit comments

Comments
 (0)