The MPS extensions aim to ease language development within MPS. They are maintained by itemis, JetBrains, and the open source community, and its development is closely aligned with the development of MPS.
Join the discussion on Slack in the #mps-extensions room.
Of course, if you want to hack on the MPS extensions, you need MPS. The MPS version that is used is in the build.gradle file.
Run the following commands to build the project:
./gradlew # Mac and Linux
gradlew.bat # Windows
This will download the required MPS version, so you need to be online when executing the build for the first time (later on, the downloaded artifacts will be cached).
The default task does not run the tests as part of the build. Execute the following command to run the tests:
./gradlew run_tests # Mac and Linux
gradlew.bat run_tests # Windows
See the building page of the documentation for more details.
For more information on the individual extensions, see our documentation. The source of the documentation is located in the docs
folder of this repository, if you would like to contribute to it. To preview the documentation run:
./gradlew previewDocs # Mac and Linux
gradlew.bat previewDocs # Windows
See our contribution guide here.