Geoffrey Booth

Results 538 comments of Geoffrey Booth

Is there a way in CSS to represent "the width of the space character"?

There’s a workaround, per https://github.com/jashkenas/coffeescript/pull/4546: ```js var parser = require('./lib/coffeescript/grammar').parser.generate({ moduleMain: function() {} }); ```

Really? How would we know that these are two arguments without the comma? I'm not a fan of implicit commas for function arguments, there's an issue discussing the topic in...

I can't seem to find it now, but there was a discussion during the CoffeeScript 2 effort about allowing one-per-line function arguments, e.g.: ```coffee fn arg1 arg2 arg3 ``` Which...

Yeah. @jashkenas have a difference of opinion when it comes to arrays of objects. I prefer this style: ```coffee arr = [ a: 1 b: 2 , a: 3 b:...

When I ran the plugin on CoffeeScript’s `Cakefile` a few months ago (so things might've changed since then) my biggest dislike was it adding parentheses around calls of implicit objects,...

> @guybedford suggested to implement just the `module` condition that Rollup and Webpack already recognize. The `module` top level field, or within `exports`? Personally I think `require-module` makes more sense,...

What if https://github.com/nodejs/node/pull/53060 lands? And someone passes both `--env-file` and `--env-file-optional`. Does this flag affect both? Would there be any way to specify “override local variables for one `.env` file,...

The request is that I want more configuration options for Corepack. Specifically, these are the things I want to be able to configure. I can split it into multiple issues,...

> is not a replacement for the engines field It should be. The `engines` field can't do some of these things, and for the parts that overlap there should be...