Skip to content

Commit c2f6f0f

Browse files
authored
Merge pull request #1 from OskarHulter:update-deps
fix: add update
2 parents 0ddfc88 + f0a3af6 commit c2f6f0f

File tree

6 files changed

+366
-421
lines changed

6 files changed

+366
-421
lines changed

.changeset/warm-bugs-grin.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"sln-spellbook": patch
3+
---
4+
5+
fix: add update

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
21-
- name: Get the lines of code.
22-
id: scc
23-
run: scc --ci --format-multi tabular:stdout,html:reports/code-stats-ci.html,html-table:reports/code-stats-table-ci.html,json2:reports/code-stats-ci.json -i js,ts,jsx,tsx,c#,html,css
21+
# - name: Get the lines of code.
22+
# id: scc
23+
# run: scc --ci --format-multi tabular:stdout,html:reports/code-stats-ci.html,html-table:reports/code-stats-table-ci.html,json2:reports/code-stats-ci.json -i js,ts,jsx,tsx,c#,html,css
2424
# with:
2525
# args: ${{ env.workspace }} -i js,ts,jsx,tsx,c#,html,css

.github/workflows/deploy.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,9 @@ jobs:
3434
package-manager: bun@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
3535
- name: validate
3636
run: bun run validate
37-
- name: Create code stats report.
38-
id: scc
39-
run: scc --ci --format-multi tabular:stdout,html:reports/code-stats-ci.html,html-table:reports/code-stats-table-ci.html,json2:reports/code-stats-ci.json -i js,ts,jsx,tsx,c#,html,css
4037
- name: Create code stats report.
4138
id: scc-script
42-
run: bun run scc-ci
39+
run: bun run scc
4340
- name: Create Release Pull Request
4441
uses: changesets/action@v1
4542
env:

bun.lockb

-1.88 KB
Binary file not shown.

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"preview": "astro preview",
1616
"astro": "astro",
1717
"scc-ci": "scc --format-multi 'wide:stdout,html:reports/size/output.html,json:reports/size/output.json,csv:reports/size/output.csv'",
18+
"scc": "scc --ci --format-multi tabular:stdout,html:reports/code-stats-ci.html,html-table:reports/code-stats-table-ci.html,json2:reports/code-stats-ci.json -i js,ts,jsx,tsx,c#,html,css",
1819
"p-d": "oha --disable-keepalive --latency-correction --no-pre-lookup -j --no-tui --stats-success-breakdown -t 60sec -q 10000 -c 800 -n 1000000 -z 3sec http://localhost:4321/sln-spellbook > reports/ddos-api-perf-report-stats.json",
1920
"p-js": "oha --disable-keepalive --latency-correction --no-pre-lookup -j --no-tui --stats-success-breakdown -t 60sec -q 1000 -n 10000 http://localhost:4321/sln-spellbook > reports/api-perf-report-stats.json",
2021
"p-ten": "oha --disable-keepalive --latency-correction --no-pre-lookup -j --no-tui -t 60sec -q 10000 -n 1000000 -z 10sec http://localhost:4321/sln-spellbook > reports/ddos-api-perf-report.json",
@@ -32,35 +33,35 @@
3233
"clean-deps": "rm -rf ./node_modules"
3334
},
3435
"dependencies": {
35-
"@astrojs/check": "^0.5.10",
36-
"@astrojs/starlight": "^0.21.5",
37-
"astro": "^4.7.0",
36+
"@astrojs/check": "^0.6.0",
37+
"@astrojs/starlight": "^0.22.2",
38+
"astro": "^4.8.1",
3839
"sharp": "^0.33.3"
3940
},
4041
"devDependencies": {
4142
"@antfu/ni": "^0.21.12",
4243
"@asyncapi/modelina": "^3.4.9",
43-
"@biomejs/biome": "1.7.1",
44+
"@biomejs/biome": "1.7.3",
4445
"@changesets/cli": "^2.27.1",
45-
"@happy-dom/global-registrator": "^14.7.1",
46+
"@happy-dom/global-registrator": "^14.10.1",
4647
"@manypkg/cli": "^0.21.4",
4748
"@projectwallace/css-analyzer": "^5.14.0",
4849
"@tsconfig/node20": "^20.1.4",
4950
"@types/bun": "*",
5051
"cmd-ts": "^0.13.0",
5152
"code-inspector-plugin": "^0.13.0",
5253
"crawlee": "^3.9.2",
53-
"execa": "^8.0.1",
54+
"execa": "^9.0.1",
5455
"git-cliff": "^2.2.1",
5556
"inline-css": "^4.0.2",
5657
"just-install": "^2.0.1",
5758
"lefthook": "^1.6.10",
5859
"open-props": "^1.7.4",
59-
"playwright": "^1.43.1",
60+
"playwright": "^1.44.0",
6061
"reveal.js": "^5.1.0",
6162
"tinybench": "^2.8.0",
6263
"ts-dedent": "^2.2.0",
63-
"type-fest": "^4.17.0",
64+
"type-fest": "^4.18.2",
6465
"wallace-cli": "^3.0.0"
6566
},
6667
"peerDependencies": {

0 commit comments

Comments
 (0)