focus-visible
Advanced tools
Comparing version 4.1.2 to 4.1.3
@@ -110,3 +110,3 @@ - [Rationale](#rationale) | ||
The tiny | ||
[focus-visible.js](http://wicg.github.io/focus-ring/src/focus-visible.js) | ||
[focus-visible.js](https://www.npmjs.com/package/focus-visible) | ||
provides a prototype intended to achieve the goals we are proposing | ||
@@ -113,0 +113,0 @@ with technology that exists today |
{ | ||
"name": "focus-visible", | ||
"version": "4.1.2", | ||
"version": "4.1.3", | ||
"description": "Polyfill for :focus-visible pseudo-selector", | ||
@@ -11,10 +11,13 @@ "scripts": { | ||
"test:selenium": "wait-on http://localhost:8080 && node ./test/index.js", | ||
"test": | ||
"npm run build && cross-env NODE_ENV=ci concurrently -k \"npm run test:server\" \"npm run test:selenium\"", | ||
"sauce": | ||
"npm run build && cross-env NODE_ENV=sauce concurrently -k \"npm run test:server\" \"npm run test:selenium\"" | ||
"test": "npm run build && cross-env NODE_ENV=ci concurrently -k \"npm run test:server\" \"npm run test:selenium\"", | ||
"sauce": "npm run build && cross-env NODE_ENV=sauce concurrently -k \"npm run test:server\" \"npm run test:selenium\"" | ||
}, | ||
"lint-staged": { | ||
"src/focus-visible.js": ["eslint"], | ||
"*.{js,json,css}": ["prettier --write", "git add"] | ||
"src/focus-visible.js": [ | ||
"eslint" | ||
], | ||
"*.{js,css}": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
@@ -59,4 +62,6 @@ "main": "dist/focus-visible.js", | ||
"greenkeeper": { | ||
"ignore": ["expect"] | ||
"ignore": [ | ||
"expect" | ||
] | ||
} | ||
} |
94499