Hello,
I’ve just upgraded my app from 11.0.0 to 11.1.0 and encounter an issue with the @rescript/core
package which I’m not using
I checked the @rescript/core
package version in the node_modules and it’s in 1.0.0
which is legit I think.
Any idea about this ? Is this an issue ?
Here is my rescript.json
:
{
"$schema": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json",
"name": "@colisweb/rescript-toolkit",
"jsx": {
"version": 4
},
"sources": [
{
"dir": "src",
"subdirs": true
},
{
"dir": "playground",
"subdirs": true,
"type": "dev"
}
],
"package-specs": [
{
"module": "esmodule",
"in-source": false
}
],
"suffix": ".bs.js",
"namespace": false,
"uncurried": false,
"bs-dependencies": [
"@rescript/react",
"@dck/rescript-promise",
"@greenlabs/ppx-spice",
"rescript-classnames",
"rescript-react-update",
"@dck/restorative"
],
"ppx-flags": [
["@greenlabs/ppx-spice/ppx"],
"lenses-ppx/ppx",
"res-react-intl/ppx"
],
"warnings": {
"number": "-44-30-32",
"error": "+5+4+6+8"
},
"bsc-flags": [
"-bs-super-errors",
"-bs-no-version-header",
"-open Belt",
"-open Cx"
]
}