Alexandros Katechis
Alexandros Katechis
If I change the import to point to `1.0.39`, I'm able to import the package.
I ran into something similar, which I outlined in #359. I am able to import `v1.0.39`, YMMV, in case y'all are depending on something in `v1.0.40`.
Would this PR fix the error `type "string" does not exist`? I'm using postgresjs with the following code example: ```typescript import postgres from 'https://deno.land/x/[email protected]/mod.js'; const sql = postgres({ host: 'localhost',...
Thanks, @thebearingedge, i'll look into that. Does that require me to give type definitions for basic types like string as well, or is that just for custom types? The table...
At [clarifai](https://www.clarifai.com/) we're completely rebuilding our react-redux SPA front-end using typescript nextJS and MST. So far, we're really enjoying the DX. We can just write code in the way that...
I believe in all cases, in order to execute a query, you need to `.execute()` it. Otherwise it doesn't know when you're done chaining things like `WHERE` conditions, etc.
It doesn't seem so: ```json "scripts": { "build": "node-pre-gyp build", "build:debug": "node-pre-gyp build --debug", "install": "node-pre-gyp install --fallback-to-build", "pretest": "node test/support/createdb.js", "test": "mocha -R spec --timeout 480000", "pack": "node-pre-gyp package"...
This is what's in my `SublimeLinter.sublime-settings` file: ``` { "default": { "debug": true, "delay": 0.25, "error_color": "D02000", "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme", "gutter_theme_excludes": [], "lint_mode": "background", "mark_style": "outline", "no_column_highlights_line": true, "passive_warnings": false, "paths":...