Robb Lovell

Results 21 comments of Robb Lovell

Here's an example: https://builddirect.github.io/deals-service/ It's very similar to the parallel layout, there are just changes to the menu structure right now. The intent was to have a three column format,...

To support multiline comments I added to the language.jason: ``` "multiline": {"start": "/*", "stop": "*/"}} or "multiline": {"start": "###", "stop": "###"} ``` The parser code uses this to find the...

Example repo: https://github.com/robblovell/plugin-missing-setup-function

I have validated that this works: ``` // serverless.js ... custom: { esbuild: { entryPoints: ['app.js'], platform: 'node', target: 'node16', bundle: true, outdir: '.esbuild/.build', plugins: "esbuild.plugins.js", // Reference the plugins...

Adding `"esModuleInterop": true` to my `tsconfig.json` did not work for me. Is there another issue here?

Yes, one test fails, I make a note of that in one of the comments. It think this needs further investigation. 👍 ``` Given that one of the unit tests...

Perhaps there are changes in the replies from the NGROK api that are causing problems? Not sure. But it looks like there are some gremlins in here somewhere that cause...

Workaround: You can replace [ with %5b and ] with %5D. Also note that it doesn't like dollar signs too. You can replace $ with %24.

It would be great if picocolors supported arbitrary colors with a `.rgb([red], [blue], [green])` method. For instance `pc.rgb(255,255,0)` would produce yellow.

Interesting idea... Experimenting around with ESM/CJS and changing the helloPlugin.ts CJS style also fails: ``` module.exports = { name: 'hello', setup(build: any) { console.log('Hello World') }, } ``` with serverless.ts:...