Brian Jenkins

Results 25 issues of Brian Jenkins

# blessed.program(). Function Behavior setTerminal(terminal) Sets the terminal emulation mode. has(name) Queries whether the terminal has the capability `name`. term(is) Queries whether the terminal of the type `is`. listen() Listen...

Small sample to reproduce the issue: ```javascript let blessed = require("blessed"); let screen = blessed.screen(); let box = blessed.box({ "width": "100%", "height": "100%", "border": { "type": "line" } }); box.pushLine("hello");...

Small sample to reproduce the issue: ```javascript let blessed = require("blessed"); let blessedContrib = require("../"); let screen = blessed.screen(); let spark = blessedContrib.sparkline({ "label": "Sparkline" }); screen.append(spark); spark.setData( [ "Sparkline1",...

Instructions in the README for usage with Rollup would be greatly appreciated. Here's as far as I got: **rollup.config.js:** ```typescript import alias from "@rollup/plugin-alias"; import commonJs from "@rollup/plugin-commonjs"; import nodeResolve...

- [x] Check if updating to the latest Preact version resolves the issue **Related** - https://github.com/shuding/nextra/issues/589 - https://github.com/preactjs/preact/issues/2690 - https://github.com/preactjs/preact/issues/3512 - https://github.com/preactjs/preact/issues/3393 - https://github.com/preactjs/next-plugin-preact/issues/53 - https://github.com/preactjs/preact/issues/3512 **Describe the bug** I...

See: https://github.com/elad2412/the-new-css-reset

**Minimal sample:** [nextra-preact.zip](https://github.com/shuding/nextra/files/9183742/nextra-preact.zip) **Steps to reproduce:** ``` npm install npm start ``` **`package.json`:** ```json { "devDependencies": { "@prefresh/webpack": "latest", "@types/node": "latest", "@types/react": "latest", "@types/react-dom": "latest", "@typescript-eslint/eslint-plugin": "latest", "@typescript-eslint/parser": "latest", "eslint":...

Given a Next.js application configured with the Nextra plugin like so: ```ts // /next.config.js module.exports = (require("nextra")({ "theme": "./layouts/docs" }))(); ``` This "works": ```ts // /layouts/docs/index.tsx import nextra from "nextra-theme-docs";...

The ability to augment the main body of content with aside content in an adjacent column. Ideally with some way to write this (in markdown or similar) so that the...

This is the code that I put in front of `convict`: ```typescript import * as fs from "fs"; import * as path from "path"; import convict from "convict"; const flattenedOptions...