Skip to content
Merged
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
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -336,16 +336,10 @@ jobs:
run: ./scripts/test_syntax.sh
shell: bash

- name: Build runtime/stdlib with rewatch
if: ${{ runner.os != 'Windows' }}
- name: Build runtime/stdlib
run: ./scripts/buildRuntime.sh
shell: bash

- name: Build runtime/stdlib with bsb (Windows)
if: ${{ runner.os == 'Windows' }}
run: ./scripts/buildRuntimeLegacy.sh
shell: bash

- name: Check for changes in lib folder
run: git diff --exit-code lib/js lib/es6

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@

#### :bug: Bug fix

- Fix creating interface for functions with upper bounded polymorphic args. https://github.com/rescript-lang/rescript/pull/7786

#### :memo: Documentation

#### :nail_care: Polish

#### :house: Internal

- Build runtime with rewatch on Windows, too. https://github.com/rescript-lang/rescript/pull/7794

# 12.0.0-beta.7

#### :rocket: New Feature
Expand All @@ -40,7 +44,6 @@
- Fix parse error with nested record types and attributes on the field name that has the nested record type. https://github.com/rescript-lang/rescript/pull/7781
- Fix ppx resolution with package inside monorepo. https://github.com/rescript-lang/rescript/pull/7776
- Fix 'Unbound module type' errors that occurred when trying to async import modules. https://github.com/rescript-lang/rescript/pull/7783
- Fix creating interface for functions with upper bounded polymorphic args. https://github.com/rescript-lang/rescript/pull/7786

#### :nail_care: Polish

Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ test-all: test test-gentype test-analysis test-tools test-rewatch
reanalyze:
reanalyze.exe -set-exit-code -all-cmt _build/default/compiler _build/default/tests -exclude-paths compiler/outcome_printer,compiler/ml,compiler/frontend,compiler/ext,compiler/depends,compiler/core,compiler/common,compiler/cmij,compiler/bsb_helper,compiler/bsb

lib-bsb:
./scripts/buildRuntimeLegacy.sh

lib:
./scripts/buildRuntime.sh

Expand Down
13 changes: 0 additions & 13 deletions scripts/buildRuntimeLegacy.sh

This file was deleted.

Loading