Gregory Beaver
Gregory Beaver
The typescript type definition for the index.d.ts is not specified in package.json as `"types": "src/index.d.ts"` and so is inaccessible to typescript. The fix is to release the exact same code...
- [x] I have searched this repository's [issues](https://github.com/devexpress/devextreme-reactive/issues) and believe that this is not a duplicate. ### I'm using ... - [x] React Grid - [ ] React Chart -...
I'm working on this router: [https://github.com/cellog/react-redux-saga-router](https://github.com/cellog/react-redux-saga-router) and have been testing it happily along the way. Recently, I refactored to use a number of separate sagas. Each saga is fully tested,...
**Description** Using this machine: ```ts import { createMachine } from 'xstate'; const machine = createMachine({ id: 'sdk-auth-settings', initial: 'notRequired', states: { notRequired: { initial: 'disabled', states: { disabled: { on:...
As discussed in https://gitter.im/cypress-io/cypress?at=5f9859d200a0f3369d366d17 the code coverage merging of jest and cypress does not work without some substantial code-smithing. I have written a new algorithm for merging the coverages, but...
This is a really tricky one, but isparta also causes this hang (on every browser, I might add). I'll need your help getting the file that's being sent to IE...
ERROR in multi preview Module not found: Error: Cannot resolve module 'webpack-hot-middleware/client' in /Users/gbeaver2/github/local/mantra-sample-blog-app @ multi preview ERROR in multi preview Module not found: Error: Cannot resolve module 'babel' in...
Fix #53 This fixes the illegal invocation. Basically, the problem described in https://stackoverflow.com/questions/9677985/uncaught-typeerror-illegal-invocation-in-chrome is what is happening here, but it appears to be a race condition. When we re-load the...
from the Acl delete method: Acl.prototype.delete = function(calendarId, ruleId, callback) { calendarId = encodeURIComponent(calendarId); ruleId = encodeURIComponent(ruleId); this.request('DEL', '/calendars/' + calendarId + '/acl/' + ruleId, {}, {}, null, callback); }
```javascript const a = new RouteParser('*/test') a.match('hi/test') ``` causes ``` Invalid regular expression: /^*/test(?=\?|$)/: Nothing to repeat ``` Obviously a name needs to be attached to the splat, but it...