Skip to content

Commit fc40966

Browse files
committed
upgrade deps
1 parent 6ce3fc6 commit fc40966

File tree

11 files changed

+131
-119
lines changed

11 files changed

+131
-119
lines changed

.vscode/tasks.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"label": "yarn-install",
88
"type": "shell",
9-
"command": "yarn install",
9+
"command": "direnv exec . yarn install",
1010
"problemMatcher": [],
1111
"presentation": {
1212
"focus": true,
@@ -20,7 +20,7 @@
2020
{
2121
"label": "build:clean",
2222
"type": "shell",
23-
"command": "yarn build:clean",
23+
"command": "direnv exec . yarn build:clean",
2424
"problemMatcher": [],
2525
"presentation": {
2626
"focus": true,
@@ -34,7 +34,7 @@
3434
{
3535
"label": "test",
3636
"type": "shell",
37-
"command": "yarn test",
37+
"command": "direnv exec . yarn test",
3838
"problemMatcher": [],
3939
"presentation": {
4040
"focus": true,
@@ -47,7 +47,7 @@
4747
{
4848
"label": "lint",
4949
"type": "shell",
50-
"command": "yarn lint:check",
50+
"command": "direnv exec . yarn lint:check",
5151
"problemMatcher": ["$eslint-stylish"],
5252
"presentation": {
5353
"focus": true,
@@ -60,7 +60,7 @@
6060
{
6161
"label": "release:patch",
6262
"type": "shell",
63-
"command": "yarn release:patch",
63+
"command": "direnv exec . yarn release:patch",
6464
"options": { "cwd": "${workspaceFolder}" },
6565
"presentation": {
6666
"focus": true,
@@ -74,7 +74,7 @@
7474
{
7575
"label": "release:prerelease",
7676
"type": "shell",
77-
"command": "yarn release:prerelease",
77+
"command": "direnv exec . yarn release:prerelease",
7878
"options": { "cwd": "${workspaceFolder}" },
7979
"presentation": {
8080
"focus": true,
@@ -88,7 +88,7 @@
8888
{
8989
"label": "build",
9090
"type": "shell",
91-
"command": "yarn build",
91+
"command": "direnv exec . yarn build",
9292
"problemMatcher": [],
9393
"options": { "cwd": "${workspaceFolder}" },
9494
"presentation": {
@@ -103,7 +103,7 @@
103103
{
104104
"label": "build:contentlayer",
105105
"type": "shell",
106-
"command": "yarn build",
106+
"command": "direnv exec . yarn build",
107107
"options": { "cwd": "${workspaceFolder}/packages/contentlayer" },
108108
"presentation": {
109109
"focus": false,
@@ -117,7 +117,7 @@
117117
{
118118
"label": "build:@contentlayer/source-contentful",
119119
"type": "shell",
120-
"command": "yarn build",
120+
"command": "direnv exec . yarn build",
121121
"options": { "cwd": "${workspaceFolder}/packages/@contentlayer/source-contentful" },
122122
"presentation": {
123123
"focus": false,
@@ -131,7 +131,7 @@
131131
{
132132
"label": "build:@contentlayer/source-sanity",
133133
"type": "shell",
134-
"command": "yarn build",
134+
"command": "direnv exec . yarn build",
135135
"options": { "cwd": "${workspaceFolder}/packages/@contentlayer/source-sanity" },
136136
"presentation": {
137137
"focus": false,
@@ -145,7 +145,7 @@
145145
{
146146
"label": "build:next-contentlayer",
147147
"type": "shell",
148-
"command": "yarn build",
148+
"command": "direnv exec . yarn build",
149149
"options": { "cwd": "${workspaceFolder}/packages/next-contentlayer" },
150150
"presentation": {
151151
"focus": false,
@@ -159,7 +159,7 @@
159159
{
160160
"label": "build:contentlayer-stackbit-yaml-generator",
161161
"type": "shell",
162-
"command": "yarn build",
162+
"command": "direnv exec . yarn build",
163163
"options": { "cwd": "${workspaceFolder}/packages/contentlayer-stackbit-yaml-generator" },
164164
"presentation": {
165165
"focus": false,
@@ -173,7 +173,7 @@
173173
{
174174
"label": "dev:ts",
175175
"type": "shell",
176-
"command": "yarn dev:ts",
176+
"command": "direnv exec . yarn dev:ts",
177177
"problemMatcher": ["$tsc-watch"],
178178
"isBackground": true,
179179
"presentation": {

examples/next-contentlayer-example

examples/next-rsc-dynamic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"contentlayer": "latest",
1212
"date-fns": "2.30.0",
13-
"next": "13.4.4",
13+
"next": "13.4.7",
1414
"next-contentlayer": "latest",
1515
"react": "18.2.0",
1616
"react-dom": "18.2.0"
@@ -20,6 +20,6 @@
2020
"autoprefixer": "^10.4.14",
2121
"postcss": "^8.4.24",
2222
"tailwindcss": "^3.3.2",
23-
"typescript": "5.0.4"
23+
"typescript": "5.1.5"
2424
}
2525
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"eslint-plugin-simple-import-sort": "^10.0.0",
3939
"prettier": "^2.8.8",
4040
"ts-patch": "^2.1.0",
41-
"typescript": "^5.0.4"
41+
"typescript": "^5.1.5"
4242
},
4343
"resolutions": {
4444
"esbuild": "0.17.0",

packages/@contentlayer/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"remark-parse": "^10.0.2",
3737
"remark-rehype": "^10.1.0",
3838
"source-map-support": "^0.5.21",
39-
"type-fest": "^3.11.1",
39+
"type-fest": "^3.12.0",
4040
"unified": "^10.1.2"
4141
},
4242
"devDependencies": {

packages/@contentlayer/utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
"hash-wasm": "^4.9.0",
7474
"inflection": "^2.0.1",
7575
"memfs": "^3.5.1",
76-
"oo-ascii-tree": "^1.82.0",
76+
"oo-ascii-tree": "^1.84.0",
7777
"ts-pattern": "^4.3.0",
78-
"type-fest": "^3.11.1"
78+
"type-fest": "^3.12.0"
7979
},
8080
"devDependencies": {
8181
"@types/inflection": "^1.13.0"

packages/contentlayer-stackbit-yaml-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"devDependencies": {
2626
"contentlayer": "workspace:*",
27-
"typescript": "^5.0.4",
27+
"typescript": "^5.1.5",
2828
"vite": "^4.3.1",
2929
"vitest": "0.30.1"
3030
}

packages/contentlayer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"@contentlayer/utils": "workspace:*"
7070
},
7171
"devDependencies": {
72-
"typescript": "^5.0.4"
72+
"typescript": "^5.1.5"
7373
},
7474
"author": "schickling",
7575
"homepage": "https://github.com/contentlayerdev/contentlayer",

packages/integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"devDependencies": {
99
"contentlayer": "workspace:*",
1010
"remark-mdx-images": "^2.0.0",
11-
"typescript": "^5.0.4",
11+
"typescript": "^5.1.5",
1212
"vite": "^4.3.1",
1313
"vitest": "0.12.10"
1414
}

packages/next-contentlayer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
"devDependencies": {
5050
"@types/react": "^18.2.7",
5151
"@types/react-dom": "^18.2.4",
52-
"next": "^13.3.1",
53-
"typescript": "^5.0.4",
54-
"webpack": "^5.80.0"
52+
"next": "^13.4.7",
53+
"typescript": "^5.1.5",
54+
"webpack": "^5.88.0"
5555
},
5656
"author": "schickling",
5757
"homepage": "https://github.com/contentlayerdev/contentlayer",

0 commit comments

Comments
 (0)