shrugs

Results 46 comments of shrugs

I tried to fix this here https://github.com/shrugs/serverless-mysql/blob/patch-1/index.d.ts but it looks like the idea of a commonjs overwrite of `exports` and typescript's es6 module setup don't work together. Probably the easiest...

Until then, a workaround is to do something like: ```ts import serverlessMysql = require("serverless-mysql"); import { ServerlessMysql } from "serverless-mysql"; const createConnection = (serverlessMysql as unknown) as ( cfg?: any,...

I'm only able to import with ``` import create = require('serverless-mysql') ``` and my intellisense can't seem to import the type `ServerlessMysql` - is this expected?

Additionally, the `Transaction` is actually a function returning that interface, not an object, so the existing type of ```ts transaction: Transaction ``` should be ```ts transaction(): Transaction ``` and ```ts...

The reason that payable was not added by default is that non-payable functions are still standard-compliant, as of the last time I read the standard. In solidity it's much easier...

+1 necessary. terrible shortcut is to use `nodemon` to wrap micro-dev, but that's not exactly... good.

Confirmed ~20% failure cases after clearing offline localstorage on latest stable Chrome desktop. 0% failure with `disableOffline: true`.

I updated all of the dependencies to the versions least likely to break the build and that seems to have fixed this specific problem: https://github.com/awslabs/aws-mobile-appsync-sdk-js/compare/master...XLNT:master lmk if that works for...

@patilkun not certain, sorry — my only target is browsers. check the diff for what's changed but imo seems like the problem is somewhere in the specific apollo version that...

I'd expect that you can also only hydrate that one child store `hydrate("map", ui.map)` without a problem.