Skip to content

Commit bf27505

Browse files
committed
chore: release 1.0.8
1 parent f99ea0d commit bf27505

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333
steps:
3434
- name: 📚 checkout
3535
uses: actions/checkout@v4
36-
with:
37-
fetch-depth: 0
3836

3937
- name: Install pnpm
4038
uses: pnpm/action-setup@v4

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.7",
2+
"version": "1.0.8",
33
"type": "commonjs",
44
"exports": {
55
"./strapi-server": {
@@ -68,7 +68,7 @@
6868
}
6969
],
7070
"engines": {
71-
"node": ">=20.x.x <=20.x.x",
71+
"node": ">=18.x.x <=20.x.x",
7272
"npm": ">=10.0.0"
7373
},
7474
"repository": {

server/src/bootstrap.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import pluginId from './pluginId'
33

44
import { getFullPopulateObject, validatePopulateIgnore } from './utils/utils'
55

6-
interface PluginConfig {
6+
export interface PluginConfig {
77
minDepth: number
88
maxDepth: number
99
skipCreatorFields: boolean

server/src/config/index.ts

-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
interface PluginConfig {
2-
default: {
3-
minDepth: number
4-
maxDepth: number
5-
skipCreatorFields: boolean
6-
ignore: string[]
7-
debug: boolean
8-
allowedModels: string[]
9-
}
10-
}
11-
121
export default {
132
default: {
143
minDepth: 5,

0 commit comments

Comments
 (0)