Justin Halsall

Results 38 issues of Justin Halsall

vscode has the ability to add a configuration that will allow you to run your rails environment in a development container: https://code.visualstudio.com/docs/remote/create-dev-container It would be great to add support for...

It would be great to make every environment as consistent as possible and create a test and development image based on the production image.

Currently CSSGroupingRule is calling CSSOM.parse but `parse` wasn't included which leads to a syntax error. This PR fixes that Line which is currently calling `CSSOM.parse`: https://github.com/NV/CSSOM/blob/a469aae2f92e454e669aec821781626924f98d17/lib/CSSGroupingRule.js#L41

It would be great if we could go from the message: ``` npm install ${notInstalled.map((pkg) => atLatest(pkg)).join(' ')} --save-dev ``` to ``` yarn add -D ${notInstalled.map((pkg) => atLatest(pkg)).join(' ')} ```...

Given have a project that looks like this: ``` -- - .eslintrc.js (with `extends: ["auto"]`) - tsconfig.json (with `"exclude": ["test"]`) - src/ - ... - test/ - tsconfig.json (with `"include":...

**Describe the bug** When using `.css(input[type=checkbox i]` Nokogiri kicks up an error: `Nokogiri::CSS::SyntaxError (unexpected ' ' after '[:equal, "checkbox"]')` **To Reproduce** ```ruby #! /usr/bin/env ruby require 'nokogiri' require 'minitest/autorun' class...

meta/feature-request
topic/css

Adds typescript types to the release to make it much easier for people to use Spector.js with typescript Docs on the subject: https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html

## Summary rrweb currently doesn't have a preferred way of dealing with events that take a while to process before they are fully captured. Let's discuss strategies to deal with...

When recording pages with tens of thousands of dom elements rrweb, the `isBlocked` checks can slow down the recording. This PR allows you to disable that check and speed up...

The rrweb monorepo uses `yarn.lock` files so it would be unwise for anyone contributing to use npm to install the dependencies. __________ @eoghanmurray was having also issues with the monorepo...