1
0
Fork 0
docsearch/packages/docsearch-css/package.json
Marais Rossouw 9e4c69dec7
feat: push keyboard buttons till client (#983)
This fixes a UI flash issue on Windows where the <kbd>⌘</kbd> key shows up right before <kbd>Ctrl</kbd> when using SSG (like Docusaurus).

This happened because in these scenarii, the site is generated on a server, and we can't know yet what will the user's OS be.

Closes facebook/docusaurus#3682.
2020-11-05 10:36:57 +01:00

26 lines
700 B
JSON

{
"name": "@docsearch/css",
"description": "Styles for DocSearch.",
"version": "1.0.0-alpha.28",
"license": "MIT",
"homepage": "https://docsearch.algolia.com",
"repository": "algolia/docsearch",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"sideEffects": false,
"files": [
"dist/"
],
"main": "dist/style.css",
"unpkg": "dist/style.css",
"jsdelivr": "dist/style.css",
"scripts": {
"build:clean": "rimraf ./dist",
"build:css": "node build-css.js",
"build": "yarn build:clean && mkdir dist && yarn build:css",
"prepare": "yarn build",
"watch": "watch \"yarn build:css\" --ignoreDirectoryPattern \"/dist/\""
}
}