I am new to both JupyterLabs and Codemirror, However, I have a new simplemode language syntax definition that I would like to apply for Clingo. I based the file off the Dockerfile mode. However, I do not know how to include this file in the build for JupyterLab. I do manage to get JL to build following the instructions here, but I'm not sure how to include my file in the build process.
line 11 in packages/codemirror/src/mode.ts
has:
import 'codemirror/mode/meta';
which kind of lead me to believe if I included a line in the meta.js file, and dropped my mode folder in that directory, that it would be found during the build, but this doesn't seem to be the case.
Any help would be very much appreciated. Thank you.