This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'rc-tabs/assets/index.css?global'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c:\installs\workspaces\dustin-terra\terra-core>npm test | |
> [email protected] pretest c:\installs\workspaces\dustin-terra\terra-core | |
> npm run lint | |
> [email protected] lint c:\installs\workspaces\dustin-terra\terra-core | |
> npm run lint:js && npm run lint:scss | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn install v1.0.1 | |
[1/5] 🔍 Validating package.json... | |
[2/5] 🔍 Resolving packages... | |
[3/5] 🚚 Fetching packages... | |
[4/5] 🔗 Linking dependencies... | |
warning "[email protected]" has incorrect peer dependency "ajv@>=4.10.0". | |
warning "[email protected]" has incorrect peer dependency "postcss@^6.0.0". | |
warning "[email protected]" has incorrect peer dependency "webpack@2 || 3". | |
warning "[email protected]" has incorrect peer dependency "webpack@^2.2.0". | |
warning "[email protected]" has incorrect peer dependency "webpack@1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEST FAILURE: 4 assertions failed, 4907 passed. (10m 37s) | |
✖ nightwatch/alert-spec | |
- [@tiny] Displays a default alert with the provided text (9.842s) | |
Testing if element <#defaultAlert > div[class*="body"] > div[class*="section"] > strong[class*="title"]> contains text: "Alert.". after 1000 milliseconds. - expected "Alert." but got: "Terra.alert.alert" | |
at Object.Displays a default alert with the provided text (/Users/bj031910/repos/terra-core/packages/terra-alert/tests/nightwatch/alert-spec.js:13:20) | |
at _combinedTickCallback (internal/process/next_tick.js:131:7) | |
at process._tickCallback (internal/process/next_tick.js:180:9) | |
SKIPPED: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terra-ui.com|master ⇒ npm install | |
> [email protected] postinstall /Users/bj031910/repos/terra-ui.com | |
> cd client && npm install | |
- [email protected] node_modules/terra-site/node_modules/terra-i18n-plugin | |
terra_ui_com@ /Users/bj031910/repos/terra-ui.com/client | |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ ├─┬ [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Badge from 'terra-badge'; | |
import { LiveProvider, LiveEditor, LiveError, LivePreview } from 'react-live'; | |
const BadgeIntentExample = (` | |
<div> | |
<Badge text="Default" /> | |
{' '} | |
<Badge intent="primary" text="Primary" /> | |
{' '} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const webpack = require('webpack'); | |
const path = require('path'); | |
const Autoprefixer = require('autoprefixer'); | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const I18nAggregatorPlugin = require('terra-i18n-plugin'); | |
const i18nSupportedLocales = require('terra-i18n/lib/i18nSupportedLocales'); | |
const CustomProperties = require('postcss-custom-properties'); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import classNames from 'classnames'; | |
import AnimateHeight from 'react-animate-height'; | |
import 'terra-base/lib/baseStyles'; | |
import './Toggler.scss'; | |
const propTypes = { | |
/** | |
* Content in the body of the toggler component that will be expanded or collapsed |
// get filepath for every svg
/* eslint-disable import/no-extraneous-dependencies */
-var svgs = _fs2.default.readdirSync(_config.TerraIcon.svgDir
+var svgs = _fs2.default.readdirSync(_config.TerraIcon.svgDir)
// Only load svg files
-).filter(function (f) {
+.filter(function (f) {
return _path2.default.extname(f) === '.svg';
-}