0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

chore: fix parcel engines issue

See https://github.com/parcel-bundler/parcel/issues/7636
This commit is contained in:
Gao Sun 2022-11-07 21:40:09 +08:00
parent 33fd811bee
commit 117b50af7a
No known key found for this signature in database
GPG key ID: 13EBE123E4773688
3 changed files with 24 additions and 0 deletions

View file

@ -87,6 +87,14 @@
"engines": {
"node": "^16.13.0 || ^18.12.0"
},
"//": "https://github.com/parcel-bundler/parcel/issues/7636",
"targets": {
"default": {
"engines": {
"browsers": "defaults"
}
}
},
"alias": {
"@/*": "./src/$1",
"@mdx/components/*": "./src/mdx-components/$1"

View file

@ -47,6 +47,14 @@
"engines": {
"node": "^16.13.0 || ^18.12.0"
},
"//": "https://github.com/parcel-bundler/parcel/issues/7636",
"targets": {
"default": {
"engines": {
"browsers": "defaults"
}
}
},
"alias": {
"@/*": "./src/$1"
},

View file

@ -74,6 +74,14 @@
"engines": {
"node": "^16.13.0 || ^18.12.0"
},
"//": "https://github.com/parcel-bundler/parcel/issues/7636",
"targets": {
"default": {
"engines": {
"browsers": "defaults"
}
}
},
"alias": {
"@/*": "./src/$1"
},