Skip to content

Commit b59e0dc

Browse files
committed
bsconfig.json -> rescript.json
1 parent 14d7a69 commit b59e0dc

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Clean up connection handler generators now that v3 let us use a better representation.
99
- Fix issue with default args in connection id makers. https://github.com/zth/rescript-relay/pull/488
1010
- Fix issue with PPX not actually converting all functions to uncurried.
11+
- Rename `bsconfig.json` -> `rescript.json`.
1112

1213
# 3.0.0-rc.4
1314

LOCAL_DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Any feature added or fix done should consider whether that case is covered in th
1414

1515
`/packages/rescript-relay/src` contains all the _ReScript_ code shipped in the package. You build it by running `yarn build` in `/packages/rescript-relay`.
1616

17-
`bsconfig.json` is only used for development, the actual `bsconfig.json` that'll be copied to the published package is located in `bsconfig.release.json`. This setup isn't great and it's likely that we'll move to using the same `bsconfig.json` for dev and release, with a script stripping unwanted things from the config before copying it to the release bundle.
17+
`rescript.json` is only used for development, the actual `rescript.json` that'll be copied to the published package is located in `rescript.release.json`. This setup isn't great and it's likely that we'll move to using the same `rescript.json` for dev and release, with a script stripping unwanted things from the config before copying it to the release bundle.
1818

1919
## The PPX
2020

build-ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sed -i 's/module\.exports \= /export /g' ../../_release/src/utils.mjs;
3232

3333
# copy config files
3434
echo "Copying config files..."
35-
cp bsconfig.release.json ../../_release/bsconfig.json;
35+
cp rescript.release.json ../../_release/rescript.json;
3636
./copyPackageJson.js ../../_release $INPUT_TAG_NAME
3737
cp yarn.lock ../../_release/;
3838
cp compiler.js ../../_release/;

packages/rescript-relay/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"rescript-relay-cli": "cli/cli.js"
3333
},
3434
"scripts": {
35-
"build": "rescript build -with-deps",
35+
"build": "rescript",
3636
"build:test": "./build-compiler-dev.sh && ./rescript-relay-compiler",
3737
"postinstall": "node postinstall.js",
3838
"test": "jest",
File renamed without changes.

0 commit comments

Comments
 (0)