Yavuz Günay
Yavuz Günay
Any progress on this ?
do you mean to change the code of the controller to make it transfer annotations ?
every color channel has 256 possible values, so in theory you could have 3 * 256 different outline colors.
```typescript // Register a tokens provider for the language monaco.languages.setMonarchTokensProvider('mySpecialLanguage', { tokenizer: { root: [ [/\[error.*/, "custom-error"], [/\[notice.*/, "custom-notice"], [/\[info.*/, "custom-info"], [/\[[a-zA-Z 0-9:]+\]/, "custom-date"], ] } }); ``` this does...
``` FROM node:16.16.0 WORKDIR /build RUN curl -fsSL https://bun.sh/install | bash COPY package.json /build RUN ~/.bun/bin/bun install >&2 ``` package.json ``` { "name": "a", "version": "1.0.0", "description": "", "main": "index.js",...
can confirm it doesnt happen on windows 10
Try to use github actions. It is the same thing
I think it might be a problem with the `SIGTERM` handling. If I remove that process.on callback, it manages to create the report ``` import express from "express"; const app...
@AndrejGajdos I can confirm that it works if you dont handle SIGTERM in your code
for that I d use npm modules with private registry. but the real problem is the communication & dependency between modules