Ben Delarre
Ben Delarre
It appears that you can only add/remove rows on documents that the authed user owns. Need to look into this further but is easily reproduced by running the test suite...
It would be nice to be able to create new worksheets and define header rows in one action. This would depend upon implementing the Cells interface first obviously, but something...
It would be good to be able to interact with spreadsheets using the Cells interface. While being nice and simple, the Rows interface has a lot of limitations. Particularly difficult...
Currently to get the row data for a worksheet you do something like this: ``` javascript worksheet.getRows(function(err, rowData) { var rows = rowData.getRows(); // now you have an array of...
### Bug description Worker constructors don't work with magic comments so chunks cannot be easily named. ```js new Worker( /* webpackChunkName: "foo-worker" */ new URL( "../foo-worker.ts", import.meta.url ), { type:...
### Expected behavior You should be able to import the parts of the library individually and types should work. Unfortunately due to the way the types packages are defined this...
### Code of conduct - [X] I agree to follow this project's code of conduct. ### Impacted component(s) All ### Expected behavior When using `lit-analyzer` at the CLI or as...
We've discovered that there is significant overhead in the conversion of code coverage reports by WTR from the v8 format output from chrome dev tools protocol, to the istanbul format...
The [getResponseBody](https://github.com/modernweb-dev/web/blob/master/packages/dev-server-core/src/utils.ts#L37) function currently tries to convert any transformed module response body from a stream/buffer to a string. It does this via the use of the `isbinaryfile` module which performs...
# Feature Request In https://github.com/evanw/esbuild/issues/309 support was added to pass through Webpack "magic comments" in `import(/* webpackChunkName: "foo" */ './foo.js')` style statements. Webpack also supports these chunk name comments in...