Using the above HTML snippet:
- select
<span class="domain tld"> - ⌘F to 'Find'
- Click the 'Find' button
- Select 'Find' in the file menu
- Choose 'Select All'
| npme add-package @kadira/storybook | |
| analyzing dependencies for @kadira/storybook: | |
| could not load babel-loader@^6.2.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load babel-preset-es2015@^6.3.13 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load cjson@^0.4.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load commander@^2.9.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load shelljs@^0.6.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load uuid@^2.0.1 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load lodash.pick@^4.2.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 | |
| could not load eslint@^2.7.0 error = getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443 |
| /* @flow */ | |
| type ButtonProps = { | |
| onClick: () => void, | |
| type: 'button' | 'reset' | 'submit', | |
| design: 'primary' | 'secondary' | 'page' | 'tooltipInfo' | 'tooltipDocs', | |
| onFocus: () => void, | |
| onmouseover: () => void, | |
| onmouseout: () => void, | |
| className:string, |
| // taken from http://www.iana.org/domains/root/db | |
| .aaa | |
| .aarp | |
| .abarth | |
| .abb | |
| .abbott | |
| .abbvie | |
| .abc | |
| .able | |
| .abogado |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: '21', | |
| // font family with optional fallbacks | |
| fontFamily: 'Input Mono, Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
| // terminal cursor background color (hex) | |
| cursorColor: '#f4d300', |
| const webpack = require('webpack'); | |
| const path = require('path'); | |
| var customProperties = require("postcss-custom-properties"); | |
| var cssApply = require('postcss-apply'); | |
| var autoprefixer = require('autoprefixer'); | |
| module.exports = env => { | |
| if (!env) env = {} | |
| const addPlugin = (add, plugin) => add ? plugin : undefined; |
| module.exports = { | |
| config: { | |
| updateChannel: "stable", | |
| fontSize: 18, | |
| fontFamily: | |
| '"Fira Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| fontWeight: "normal", | |
| fontWeightBold: "bold", | |
| cursorColor: "#80cbc4", | |
| cursorAccentColor: "#000", |