David Souther

Results 49 issues of David Souther

Starting with `grunt-docco`, we noticed a directory copy sometimes failed (https://github.com/DavidSouther/grunt-docco/issues/40). We tracked that down to `node-fs-extra`, where @malinges opened https://github.com/jprichardson/node-fs-extra/issues/98; I duplicated that error using ncp directly and am...

Added test to demonstrate behavior raised in #71. This bug happens when attempting to copy files to a directory that has not been emptied of files (though not consistently).

In CoffeeScript, ``` _newPageHandler = ({ path order definition redirect noUid permissioned })-> order or= 100 noUid or= false permissioned or= (-> true) ``` compiles to ``` var _newPageHandler; _newPageHandler...

In Redux, this does not compile: ``` arr = [ animal: 'dog' sound: 'woof' , animal: 'cat' sound: 'meow' ] ``` http://michaelficarra.github.io/CoffeeScriptRedux/#try:%0Aarr%20%3D%20%5B%0A%20%20animal%3A%20'dog'%0A%20%20sound%3A%20'woof'%0A%2C%0A%20%20animal%3A%20'cat'%0A%20%20sound%3A%20'meow'%0A%5D%0A In CoffeeScript, it compiles to ``` var arr;...

In CoffeeScript Redux, this does not compile: ``` arr = ['a', 'b', 'c'] idx = 1 arr[idx..idx] = [] ``` http://michaelficarra.github.io/CoffeeScriptRedux/#try:arr%20%3D%20%5B'a'%2C%20'b'%2C%20'c'%5D%0Aidx%20%3D%201%0Aarr%5Bidx..idx%5D%20%3D%20%5B%5D%0A In CoffeeScript, it compiles to ``` var arr, idx,...

In `grunt-docco`, users were noticing sometimes the build directories were incorrect. https://github.com/DavidSouther/grunt-docco/issues/40 This was traced to `node-fs-extra` and `ncp`. https://github.com/jprichardson/node-fs-extra/issues/98 https://github.com/AvianFlu/ncp/pull/75 While the behavior _should_ be fixed in ncp itself,...

dl, dt, and dd get no love. I'm playing around with having them get a "property sheet" treatment. I have a small example in my project's code: ![image](https://user-images.githubusercontent.com/498712/168398556-48ec867a-8e1f-43e0-8665-80d0e10749b5.png) ```html Project...

https://arxiv.org/pdf/1806.11150.pdf with proof of concept in https://github.com/sqmedeiros/lpeglabel > We propose a conservative extension, based on PEGs with labeled failures, that adds a syntax error recovery mechanism for PEGs. Œis extension...

enhancement

What would be involved with creating an editor for the `d` attribute of the `path` tag?

question

Would you be interested in a pull request that added Coffeescript templates, and install generator options to choose them?