Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Restore yarn cache
id: yarn-cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

---

## 7.0.0
* **[ BREAKING ]** Update to `@rescript/[email protected]`.

## 6.0.0
* **[ BREAKING ]** Update to `rescript@11`.

Expand Down
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"prestart": "yarn run res:build:dev",
"build": "parcel build examples/index.html",
"prebuild": "yarn run res:build",
"res:build": "RES_LOG=off rescript build -with-deps",
"res:build:dev": "RES_LOG=*,rescript-dnd=* rescript build -with-deps",
"res:watch": "RES_LOG=*,rescript-dnd=* rescript build -with-deps -w",
"res:build": "RES_LOG=off rescript build",
"res:build:dev": "RES_LOG=*,rescript-dnd=* rescript build",
"res:watch": "RES_LOG=*,rescript-dnd=* rescript build -w",
"res:clean": "rescript clean",
"clean": "rm -rf dist && yarn run res:clean",
"test": "exit 0",
"format": "rescript format -all",
"format": "rescript format",
"deploy": "vercel deploy dist --prod",
"predeploy": "yarn run build"
},
Expand Down Expand Up @@ -44,22 +44,25 @@
"rescript-logger": "4.0.0"
},
"peerDependencies": {
"@rescript/react": ">=0.12.0",
"@rescript/core": ">=1.6.0",
"@rescript/react": ">=0.14.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"rescript": ">=11.0.0",
"rescript": ">=11.1.0",
"rescript-webapi": ">=0.6.0"
},
"devDependencies": {
"@rescript/react": "0.12.1",
"autoprefixer": "10.4.17",
"parcel": "2.11.0",
"postcss": "8.4.35",
"@rescript/core": "1.6.1",
"@rescript/react": "0.14.0",
"autoprefixer": "10.4.21",
"parcel": "2.15.4",
"postcss": "8.5.6",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"rescript": "11.0.1",
"rescript-classnames": "7.0.0",
"rescript-webapi": "0.9.1"
}
"rescript": "11.1.4",
"rescript-classnames": "7.0.1",
"rescript-webapi": "0.10.0"
},
"packageManager": "[email protected]+sha512.033a040f18f6e7a04e4bf8ea0d7037a63ca19a2e054410543206284c7238108b7612144492f1f4b283d512d9c3f8340825f53947d6ca85c6751fd97cccf59ea0"
}
3 changes: 2 additions & 1 deletion rescript.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
}
],
"bs-dependencies": [
"@rescript/core",
"@rescript/react",
"rescript-webapi",
"rescript-logger"
Expand All @@ -32,7 +33,7 @@
]
],
"package-specs": {
"module": "es6",
"module": "esmodule",
"in-source": true
},
"suffix": ".res.js",
Expand Down
Loading
Loading