Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upfeat(std/node/process): request for stdin, stdout, stderr [$20 bounty] #7101
Labels
Comments
balupton
added a commit
to bevry/assert-helpers
that referenced
this issue
Aug 18, 2020
Check file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts error: TS2305 [ERROR]: Module '"https://raw.githubusercontent.com/denoland/deno/30052aa6d43378cb28dd92cd62f5f5b4e0ac4351/std/node/assert"' has no exported member 'deepStrictEqual'. deepStrictEqual as _deepStrictEqual, ~~~~~~~~~~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:6:2 TS2614 [ERROR]: Module '"https://deno.land/std@0.65.0/node/process"' has no exported member 'stdout'. Did you mean to use 'import stdout from "https://deno.land/std@0.65.0/node/process"' instead? import { argv, env, stdout, stderr, versions } from 'https://deno.land/std/node/process.ts' ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:11:21 TS2614 [ERROR]: Module '"https://deno.land/std@0.65.0/node/process"' has no exported member 'stderr'. Did you mean to use 'import stderr from "https://deno.land/std@0.65.0/node/process"' instead? import { argv, env, stdout, stderr, versions } from 'https://deno.land/std/node/process.ts' ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:11:29 TS2304 [ERROR]: Cannot find name 'assert'. assert.ok(actual.indexOf(expected) !== -1, testName) ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:308:3 Found 4 errors. denoland/deno#7101 denoland/deno#7102
balupton
added a commit
to bevry/assert-helpers
that referenced
this issue
Aug 18, 2020
Check file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts error: TS2305 [ERROR]: Module '"https://raw.githubusercontent.com/denoland/deno/30052aa6d43378cb28dd92cd62f5f5b4e0ac4351/std/node/assert"' has no exported member 'deepStrictEqual'. deepStrictEqual as _deepStrictEqual, ~~~~~~~~~~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:6:2 TS2614 [ERROR]: Module '"https://deno.land/std@0.65.0/node/process"' has no exported member 'stdout'. Did you mean to use 'import stdout from "https://deno.land/std@0.65.0/node/process"' instead? import { argv, env, stdout, stderr, versions } from 'https://deno.land/std/node/process.ts' ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:11:21 TS2614 [ERROR]: Module '"https://deno.land/std@0.65.0/node/process"' has no exported member 'stderr'. Did you mean to use 'import stderr from "https://deno.land/std@0.65.0/node/process"' instead? import { argv, env, stdout, stderr, versions } from 'https://deno.land/std/node/process.ts' ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:11:29 TS2304 [ERROR]: Cannot find name 'assert'. assert.ok(actual.indexOf(expected) !== -1, testName) ~~~~~~ at file:///Users/balupton/Projects/active/assert-helpers/edition-deno/index.ts:308:3 Found 4 errors. denoland/deno#7101 denoland/deno#7102
|
Placed a $20 bounty on this (it's not much, but it's what I can afford): |
|
For some reason I thought this issue was taken. I will take a stab at this, no bounty needed. I will do my research due diligence this weekend and follow up asap. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
currently they are missing from https://github.com/denoland/deno/blob/master/std/node/process.ts
My use case is running make-deno-edition on assert-helpers which is failing on https://github.com/bevry/assert-helpers/blob/3f4a9ea8a6c6d606f5cecc3cce96755e1ead3357/source/index.ts#L27-L36 because they are missing, and don't have .isTTY() added for them
Relevant node docs:
Relevant deno docs: