Skip to content

Commit

Permalink
tap-parser is unresolved bc shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Sep 20, 2023
1 parent d4cb187 commit 28c3e4c
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 65 deletions.
114 changes: 51 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tap-arc",
"description": "spec-like TAP reporter",
"author": "tbeseda",
"version": "1.0.1",
"version": "1.0.0-1",
"license": "Apache-2.0",
"type": "module",
"main": "index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/tap-arc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// eslint-disable-next-line import/no-unresolved
import { Parser } from 'tap-parser' // what's going on with @tapjs packages?
import { PassThrough } from 'stream'
import { Parser } from 'tap-parser'
import duplexer from 'duplexer3' // TODO: write a custom, simpler duplexer
import stripAnsi from 'strip-ansi'
import createMakeDiff from './_make-diff.js'
Expand Down
2 changes: 2 additions & 0 deletions test/smoke.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// ℹ️ Smoke test CLI program with bare minimum Parser

// eslint-disable-next-line import/no-unresolved
import { Parser } from 'tap-parser'
const p = new Parser(console.log)
process.stdin.pipe(p)

0 comments on commit 28c3e4c

Please sign in to comment.