mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-06-04 11:04:58 +00:00
Update eslint and prettier
This commit is contained in:
@@ -46,9 +46,11 @@ export default class TextEventsExample extends React.Component {
|
|||||||
event.nativeEvent.selection.start +
|
event.nativeEvent.selection.start +
|
||||||
',' +
|
',' +
|
||||||
event.nativeEvent.selection.end
|
event.nativeEvent.selection.end
|
||||||
)}
|
)
|
||||||
|
}
|
||||||
onSubmitEditing={event =>
|
onSubmitEditing={event =>
|
||||||
this.updateText('onSubmitEditing text: ' + event.nativeEvent.text)}
|
this.updateText('onSubmitEditing text: ' + event.nativeEvent.text)
|
||||||
|
}
|
||||||
placeholder="Enter text to see events"
|
placeholder="Enter text to see events"
|
||||||
style={[helperStyles.textinput, { maxWidth: 200 }]}
|
style={[helperStyles.textinput, { maxWidth: 200 }]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
+5
-5
@@ -77,7 +77,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-cli": "^6.26.0",
|
"babel-cli": "^6.26.0",
|
||||||
"babel-core": "^6.26.0",
|
"babel-core": "^6.26.0",
|
||||||
"babel-eslint": "^7.2.3",
|
"babel-eslint": "^8.0.3",
|
||||||
"babel-loader": "^7.1.2",
|
"babel-loader": "^7.1.2",
|
||||||
"babel-plugin-tester": "^4.0.0",
|
"babel-plugin-tester": "^4.0.0",
|
||||||
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
|
||||||
@@ -87,15 +87,15 @@
|
|||||||
"enzyme": "^3.1.0",
|
"enzyme": "^3.1.0",
|
||||||
"enzyme-adapter-react-16": "^1.0.2",
|
"enzyme-adapter-react-16": "^1.0.2",
|
||||||
"enzyme-to-json": "^3.1.4",
|
"enzyme-to-json": "^3.1.4",
|
||||||
"eslint": "^4.6.1",
|
"eslint": "^4.12.1",
|
||||||
"eslint-config-prettier": "^2.6.0",
|
"eslint-config-prettier": "^2.9.0",
|
||||||
"eslint-plugin-promise": "^3.5.0",
|
"eslint-plugin-promise": "^3.6.0",
|
||||||
"eslint-plugin-react": "^7.5.1",
|
"eslint-plugin-react": "^7.5.1",
|
||||||
"file-loader": "^1.1.4",
|
"file-loader": "^1.1.4",
|
||||||
"flow-bin": "^0.60.1",
|
"flow-bin": "^0.60.1",
|
||||||
"jest": "^21.2.1",
|
"jest": "^21.2.1",
|
||||||
"lint-staged": "^4.1.3",
|
"lint-staged": "^4.1.3",
|
||||||
"prettier": "^1.7.3",
|
"prettier": "^1.8.2",
|
||||||
"raf": "^3.3.2",
|
"raf": "^3.3.2",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0",
|
"react-dom": "^16.0.0",
|
||||||
|
|||||||
@@ -30,10 +30,7 @@ export default function renderApplication<Props: Object>(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getApplication(
|
export function getApplication(RootComponent: ComponentType<Object>, initialProps: Object): Object {
|
||||||
RootComponent: ComponentType<Object>,
|
|
||||||
initialProps: Object
|
|
||||||
): Object {
|
|
||||||
const element = (
|
const element = (
|
||||||
<AppContainer rootTag={{}}>
|
<AppContainer rootTag={{}}>
|
||||||
<RootComponent {...initialProps} />
|
<RootComponent {...initialProps} />
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ export default class StyleRegistry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Caching layer over 'resolveStyle'
|
* Caching layer over 'resolveStyle'
|
||||||
*/
|
*/
|
||||||
_resolveStyleIfNeeded(style, options, key) {
|
_resolveStyleIfNeeded(style, options, key) {
|
||||||
const dir = I18nManager.isRTL ? 'rtl' : 'ltr';
|
const dir = I18nManager.isRTL ? 'rtl' : 'ltr';
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ import { Children, Component } from 'react';
|
|||||||
*
|
*
|
||||||
* Typically, you will not need to use this component and should opt for normal
|
* Typically, you will not need to use this component and should opt for normal
|
||||||
* React reconciliation.
|
* React reconciliation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
children: any,
|
children: any,
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import StyleSheet from '../../apis/StyleSheet';
|
|||||||
import TimerMixin from 'react-timer-mixin';
|
import TimerMixin from 'react-timer-mixin';
|
||||||
import Touchable from './Touchable';
|
import Touchable from './Touchable';
|
||||||
import warning from 'fbjs/lib/warning';
|
import warning from 'fbjs/lib/warning';
|
||||||
import { bool, func, number, string } from 'prop-types';
|
import { any, bool, func, number, string } from 'prop-types';
|
||||||
|
|
||||||
type Event = Object;
|
type Event = Object;
|
||||||
|
|
||||||
@@ -44,6 +44,7 @@ const TouchableWithoutFeedback = createReactClass({
|
|||||||
accessibilityRole: BaseComponentPropTypes.accessibilityRole,
|
accessibilityRole: BaseComponentPropTypes.accessibilityRole,
|
||||||
accessibilityTraits: BaseComponentPropTypes.accessibilityTraits,
|
accessibilityTraits: BaseComponentPropTypes.accessibilityTraits,
|
||||||
accessible: bool,
|
accessible: bool,
|
||||||
|
children: any,
|
||||||
/**
|
/**
|
||||||
* Delay in ms, from onPressIn, before onLongPress is called.
|
* Delay in ms, from onPressIn, before onLongPress is called.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -37,11 +37,11 @@ export type ViewProps = {
|
|||||||
accessibilityLiveRegion?: 'none' | 'polite' | 'assertive',
|
accessibilityLiveRegion?: 'none' | 'polite' | 'assertive',
|
||||||
accessibilityRole?: string,
|
accessibilityRole?: string,
|
||||||
accessibilityTraits?: string | Array<string>,
|
accessibilityTraits?: string | Array<string>,
|
||||||
accessible?: bool,
|
accessible?: boolean,
|
||||||
children?: any,
|
children?: any,
|
||||||
collapsable?: bool,
|
collapsable?: boolean,
|
||||||
hitSlop?: EdgeInsetsProp,
|
hitSlop?: EdgeInsetsProp,
|
||||||
importantForAccessibility?: 'auto'| 'yes'| 'no'| 'no-hide-descendants',
|
importantForAccessibility?: 'auto' | 'yes' | 'no' | 'no-hide-descendants',
|
||||||
onAccessibilityTap?: Function,
|
onAccessibilityTap?: Function,
|
||||||
onClick?: Function,
|
onClick?: Function,
|
||||||
onClickCapture?: Function,
|
onClickCapture?: Function,
|
||||||
@@ -65,11 +65,11 @@ export type ViewProps = {
|
|||||||
onTouchMoveCapture?: Function,
|
onTouchMoveCapture?: Function,
|
||||||
onTouchStart?: Function,
|
onTouchStart?: Function,
|
||||||
onTouchStartCapture?: Function,
|
onTouchStartCapture?: Function,
|
||||||
pointerEvents?: 'box-none'| 'none'| 'box-only'| 'auto',
|
pointerEvents?: 'box-none' | 'none' | 'box-only' | 'auto',
|
||||||
removeClippedSubviews?: boolean,
|
removeClippedSubviews?: boolean,
|
||||||
style?: stylePropType,
|
style?: stylePropType,
|
||||||
testID?: string,
|
testID?: string
|
||||||
}
|
};
|
||||||
|
|
||||||
const ViewPropTypes = {
|
const ViewPropTypes = {
|
||||||
...BaseComponentPropTypes,
|
...BaseComponentPropTypes,
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ const safeOverride = (original, next) => {
|
|||||||
return next;
|
return next;
|
||||||
};
|
};
|
||||||
|
|
||||||
const applyLayout = (Component) => {
|
const applyLayout = Component => {
|
||||||
const componentDidMount = Component.prototype.componentDidMount;
|
const componentDidMount = Component.prototype.componentDidMount;
|
||||||
const componentDidUpdate = Component.prototype.componentDidUpdate;
|
const componentDidUpdate = Component.prototype.componentDidUpdate;
|
||||||
const componentWillUnmount = Component.prototype.componentWillUnmount;
|
const componentWillUnmount = Component.prototype.componentWillUnmount;
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
import NativeMethodsMixin from '../NativeMethodsMixin';
|
import NativeMethodsMixin from '../NativeMethodsMixin';
|
||||||
|
|
||||||
const applyNativeMethods = (Component) => {
|
const applyNativeMethods = Component => {
|
||||||
Object.keys(NativeMethodsMixin).forEach(method => {
|
Object.keys(NativeMethodsMixin).forEach(method => {
|
||||||
if (!Component.prototype[method]) {
|
if (!Component.prototype[method]) {
|
||||||
Component.prototype[method] = NativeMethodsMixin[method];
|
Component.prototype[method] = NativeMethodsMixin[method];
|
||||||
|
|||||||
+7
-7
@@ -14,13 +14,13 @@ import dangerousStyleValue from '../dangerousStyleValue';
|
|||||||
import warnValidStyle from '../warnValidStyle';
|
import warnValidStyle from '../warnValidStyle';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the value for multiple styles on a node. If a value is specified as
|
* Sets the value for multiple styles on a node. If a value is specified as
|
||||||
* '' (empty string), the corresponding style property will be unset.
|
* '' (empty string), the corresponding style property will be unset.
|
||||||
*
|
*
|
||||||
* @param {DOMElement} node
|
* @param {DOMElement} node
|
||||||
* @param {object} styles
|
* @param {object} styles
|
||||||
* @param {ReactDOMComponent} component
|
* @param {ReactDOMComponent} component
|
||||||
*/
|
*/
|
||||||
const setValueForStyles = function(node, styles, component) {
|
const setValueForStyles = function(node, styles, component) {
|
||||||
var style = node.style;
|
var style = node.style;
|
||||||
for (var styleName in styles) {
|
for (var styleName in styles) {
|
||||||
|
|||||||
@@ -2,6 +2,59 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@babel/code-frame@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.31.tgz#473d021ecc573a2cce1c07d5b509d5215f46ba35"
|
||||||
|
dependencies:
|
||||||
|
chalk "^2.0.0"
|
||||||
|
esutils "^2.0.2"
|
||||||
|
js-tokens "^3.0.0"
|
||||||
|
|
||||||
|
"@babel/helper-function-name@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.31.tgz#afe63ad799209989348b1109b44feb66aa245f57"
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-get-function-arity" "7.0.0-beta.31"
|
||||||
|
"@babel/template" "7.0.0-beta.31"
|
||||||
|
"@babel/traverse" "7.0.0-beta.31"
|
||||||
|
"@babel/types" "7.0.0-beta.31"
|
||||||
|
|
||||||
|
"@babel/helper-get-function-arity@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.31.tgz#1176d79252741218e0aec872ada07efb2b37a493"
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "7.0.0-beta.31"
|
||||||
|
|
||||||
|
"@babel/template@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.31.tgz#577bb29389f6c497c3e7d014617e7d6713f68bda"
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "7.0.0-beta.31"
|
||||||
|
"@babel/types" "7.0.0-beta.31"
|
||||||
|
babylon "7.0.0-beta.31"
|
||||||
|
lodash "^4.2.0"
|
||||||
|
|
||||||
|
"@babel/traverse@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.31.tgz#db399499ad74aefda014f0c10321ab255134b1df"
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "7.0.0-beta.31"
|
||||||
|
"@babel/helper-function-name" "7.0.0-beta.31"
|
||||||
|
"@babel/types" "7.0.0-beta.31"
|
||||||
|
babylon "7.0.0-beta.31"
|
||||||
|
debug "^3.0.1"
|
||||||
|
globals "^10.0.0"
|
||||||
|
invariant "^2.2.0"
|
||||||
|
lodash "^4.2.0"
|
||||||
|
|
||||||
|
"@babel/types@7.0.0-beta.31":
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.31.tgz#42c9c86784f674c173fb21882ca9643334029de4"
|
||||||
|
dependencies:
|
||||||
|
esutils "^2.0.2"
|
||||||
|
lodash "^4.2.0"
|
||||||
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@types/node@^6.0.46":
|
"@types/node@^6.0.46":
|
||||||
version "6.0.88"
|
version "6.0.88"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66"
|
||||||
@@ -51,6 +104,10 @@ acorn@^5.0.0, acorn@^5.1.1:
|
|||||||
version "5.1.1"
|
version "5.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
|
||||||
|
|
||||||
|
acorn@^5.2.1:
|
||||||
|
version "5.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
|
||||||
|
|
||||||
ajv-keywords@^1.0.0:
|
ajv-keywords@^1.0.0:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
|
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
|
||||||
@@ -82,7 +139,7 @@ ajv@^5.0.0:
|
|||||||
json-schema-traverse "^0.3.0"
|
json-schema-traverse "^0.3.0"
|
||||||
json-stable-stringify "^1.0.1"
|
json-stable-stringify "^1.0.1"
|
||||||
|
|
||||||
ajv@^5.1.5, ajv@^5.2.0:
|
ajv@^5.1.5:
|
||||||
version "5.2.0"
|
version "5.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.0.tgz#c1735024c5da2ef75cc190713073d44f098bf486"
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.0.tgz#c1735024c5da2ef75cc190713073d44f098bf486"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -91,6 +148,15 @@ ajv@^5.1.5, ajv@^5.2.0:
|
|||||||
json-schema-traverse "^0.3.0"
|
json-schema-traverse "^0.3.0"
|
||||||
json-stable-stringify "^1.0.1"
|
json-stable-stringify "^1.0.1"
|
||||||
|
|
||||||
|
ajv@^5.3.0:
|
||||||
|
version "5.5.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2"
|
||||||
|
dependencies:
|
||||||
|
co "^4.6.0"
|
||||||
|
fast-deep-equal "^1.0.0"
|
||||||
|
fast-json-stable-stringify "^2.0.0"
|
||||||
|
json-schema-traverse "^0.3.0"
|
||||||
|
|
||||||
align-text@^0.1.1, align-text@^0.1.3:
|
align-text@^0.1.1, align-text@^0.1.3:
|
||||||
version "0.1.4"
|
version "0.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
||||||
@@ -344,14 +410,14 @@ babel-core@^6.0.0, babel-core@^6.25.0, babel-core@^6.26.0:
|
|||||||
slash "^1.0.0"
|
slash "^1.0.0"
|
||||||
source-map "^0.5.6"
|
source-map "^0.5.6"
|
||||||
|
|
||||||
babel-eslint@^7.2.3:
|
babel-eslint@^8.0.3:
|
||||||
version "7.2.3"
|
version "8.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
|
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.3.tgz#f29ecf02336be438195325cd47c468da81ee4e98"
|
||||||
dependencies:
|
dependencies:
|
||||||
babel-code-frame "^6.22.0"
|
"@babel/code-frame" "7.0.0-beta.31"
|
||||||
babel-traverse "^6.23.1"
|
"@babel/traverse" "7.0.0-beta.31"
|
||||||
babel-types "^6.23.0"
|
"@babel/types" "7.0.0-beta.31"
|
||||||
babylon "^6.17.0"
|
babylon "7.0.0-beta.31"
|
||||||
|
|
||||||
babel-generator@^6.18.0, babel-generator@^6.26.0:
|
babel-generator@^6.18.0, babel-generator@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
@@ -776,7 +842,7 @@ babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
|
|||||||
babylon "^6.18.0"
|
babylon "^6.18.0"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -790,7 +856,7 @@ babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-tr
|
|||||||
invariant "^2.2.2"
|
invariant "^2.2.2"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26.0:
|
babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -799,7 +865,11 @@ babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.23.0, babel-types@^6.24
|
|||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
to-fast-properties "^1.0.3"
|
to-fast-properties "^1.0.3"
|
||||||
|
|
||||||
babylon@^6.13.0, babylon@^6.17.0, babylon@^6.18.0:
|
babylon@7.0.0-beta.31:
|
||||||
|
version "7.0.0-beta.31"
|
||||||
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.31.tgz#7ec10f81e0e456fd0f855ad60fa30c2ac454283f"
|
||||||
|
|
||||||
|
babylon@^6.13.0, babylon@^6.18.0:
|
||||||
version "6.18.0"
|
version "6.18.0"
|
||||||
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
||||||
|
|
||||||
@@ -1049,6 +1119,14 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
|
|||||||
strip-ansi "^3.0.0"
|
strip-ansi "^3.0.0"
|
||||||
supports-color "^2.0.0"
|
supports-color "^2.0.0"
|
||||||
|
|
||||||
|
chalk@^2.0.0:
|
||||||
|
version "2.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
|
||||||
|
dependencies:
|
||||||
|
ansi-styles "^3.1.0"
|
||||||
|
escape-string-regexp "^1.0.5"
|
||||||
|
supports-color "^4.0.0"
|
||||||
|
|
||||||
chalk@^2.0.1, chalk@^2.1.0:
|
chalk@^2.0.1, chalk@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
|
||||||
@@ -1445,6 +1523,12 @@ debug@^2.2.0, debug@^2.6.3, debug@^2.6.8:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "2.0.0"
|
ms "2.0.0"
|
||||||
|
|
||||||
|
debug@^3.0.1:
|
||||||
|
version "3.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
||||||
|
dependencies:
|
||||||
|
ms "2.0.0"
|
||||||
|
|
||||||
debug@~2.2.0:
|
debug@~2.2.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
|
||||||
@@ -1573,6 +1657,12 @@ doctrine@^2.0.0:
|
|||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
isarray "^1.0.0"
|
isarray "^1.0.0"
|
||||||
|
|
||||||
|
doctrine@^2.0.2:
|
||||||
|
version "2.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.2.tgz#68f96ce8efc56cc42651f1faadb4f175273b0075"
|
||||||
|
dependencies:
|
||||||
|
esutils "^2.0.2"
|
||||||
|
|
||||||
dom-serializer@0, dom-serializer@~0.1.0:
|
dom-serializer@0, dom-serializer@~0.1.0:
|
||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
||||||
@@ -1833,15 +1923,15 @@ escope@^3.6.0:
|
|||||||
esrecurse "^4.1.0"
|
esrecurse "^4.1.0"
|
||||||
estraverse "^4.1.1"
|
estraverse "^4.1.1"
|
||||||
|
|
||||||
eslint-config-prettier@^2.6.0:
|
eslint-config-prettier@^2.9.0:
|
||||||
version "2.6.0"
|
version "2.9.0"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.6.0.tgz#f21db0ebb438ad678fb98946097c4bb198befccc"
|
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3"
|
||||||
dependencies:
|
dependencies:
|
||||||
get-stdin "^5.0.1"
|
get-stdin "^5.0.1"
|
||||||
|
|
||||||
eslint-plugin-promise@^3.5.0:
|
eslint-plugin-promise@^3.6.0:
|
||||||
version "3.5.0"
|
version "3.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75"
|
||||||
|
|
||||||
eslint-plugin-react@^7.5.1:
|
eslint-plugin-react@^7.5.1:
|
||||||
version "7.5.1"
|
version "7.5.1"
|
||||||
@@ -1859,32 +1949,32 @@ eslint-scope@^3.7.1:
|
|||||||
esrecurse "^4.1.0"
|
esrecurse "^4.1.0"
|
||||||
estraverse "^4.1.1"
|
estraverse "^4.1.1"
|
||||||
|
|
||||||
eslint@^4.6.1:
|
eslint@^4.12.1:
|
||||||
version "4.6.1"
|
version "4.12.1"
|
||||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.6.1.tgz#ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"
|
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.12.1.tgz#5ec1973822b4a066b353770c3c6d69a2a188e880"
|
||||||
dependencies:
|
dependencies:
|
||||||
ajv "^5.2.0"
|
ajv "^5.3.0"
|
||||||
babel-code-frame "^6.22.0"
|
babel-code-frame "^6.22.0"
|
||||||
chalk "^2.1.0"
|
chalk "^2.1.0"
|
||||||
concat-stream "^1.6.0"
|
concat-stream "^1.6.0"
|
||||||
cross-spawn "^5.1.0"
|
cross-spawn "^5.1.0"
|
||||||
debug "^2.6.8"
|
debug "^3.0.1"
|
||||||
doctrine "^2.0.0"
|
doctrine "^2.0.2"
|
||||||
eslint-scope "^3.7.1"
|
eslint-scope "^3.7.1"
|
||||||
espree "^3.5.0"
|
espree "^3.5.2"
|
||||||
esquery "^1.0.0"
|
esquery "^1.0.0"
|
||||||
estraverse "^4.2.0"
|
estraverse "^4.2.0"
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
file-entry-cache "^2.0.0"
|
file-entry-cache "^2.0.0"
|
||||||
functional-red-black-tree "^1.0.1"
|
functional-red-black-tree "^1.0.1"
|
||||||
glob "^7.1.2"
|
glob "^7.1.2"
|
||||||
globals "^9.17.0"
|
globals "^11.0.1"
|
||||||
ignore "^3.3.3"
|
ignore "^3.3.3"
|
||||||
imurmurhash "^0.1.4"
|
imurmurhash "^0.1.4"
|
||||||
inquirer "^3.0.6"
|
inquirer "^3.0.6"
|
||||||
is-resolvable "^1.0.0"
|
is-resolvable "^1.0.0"
|
||||||
js-yaml "^3.9.1"
|
js-yaml "^3.9.1"
|
||||||
json-stable-stringify "^1.0.1"
|
json-stable-stringify-without-jsonify "^1.0.1"
|
||||||
levn "^0.3.0"
|
levn "^0.3.0"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
minimatch "^3.0.2"
|
minimatch "^3.0.2"
|
||||||
@@ -1892,7 +1982,7 @@ eslint@^4.6.1:
|
|||||||
natural-compare "^1.4.0"
|
natural-compare "^1.4.0"
|
||||||
optionator "^0.8.2"
|
optionator "^0.8.2"
|
||||||
path-is-inside "^1.0.2"
|
path-is-inside "^1.0.2"
|
||||||
pluralize "^4.0.0"
|
pluralize "^7.0.0"
|
||||||
progress "^2.0.0"
|
progress "^2.0.0"
|
||||||
require-uncached "^1.0.3"
|
require-uncached "^1.0.3"
|
||||||
semver "^5.3.0"
|
semver "^5.3.0"
|
||||||
@@ -1901,11 +1991,11 @@ eslint@^4.6.1:
|
|||||||
table "^4.0.1"
|
table "^4.0.1"
|
||||||
text-table "~0.2.0"
|
text-table "~0.2.0"
|
||||||
|
|
||||||
espree@^3.5.0:
|
espree@^3.5.2:
|
||||||
version "3.5.0"
|
version "3.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d"
|
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca"
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn "^5.1.1"
|
acorn "^5.2.1"
|
||||||
acorn-jsx "^3.0.0"
|
acorn-jsx "^3.0.0"
|
||||||
|
|
||||||
esprima@^2.7.1:
|
esprima@^2.7.1:
|
||||||
@@ -2097,6 +2187,10 @@ fast-deep-equal@^1.0.0:
|
|||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
|
||||||
|
|
||||||
|
fast-json-stable-stringify@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
|
||||||
|
|
||||||
fast-levenshtein@~2.0.4:
|
fast-levenshtein@~2.0.4:
|
||||||
version "2.0.5"
|
version "2.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
|
||||||
@@ -2406,7 +2500,15 @@ global@^4.3.0:
|
|||||||
min-document "^2.19.0"
|
min-document "^2.19.0"
|
||||||
process "~0.5.1"
|
process "~0.5.1"
|
||||||
|
|
||||||
globals@^9.17.0, globals@^9.18.0:
|
globals@^10.0.0:
|
||||||
|
version "10.4.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/globals/-/globals-10.4.0.tgz#5c477388b128a9e4c5c5d01c7a2aca68c68b2da7"
|
||||||
|
|
||||||
|
globals@^11.0.1:
|
||||||
|
version "11.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.0.1.tgz#12a87bb010e5154396acc535e1e43fc753b0e5e8"
|
||||||
|
|
||||||
|
globals@^9.18.0:
|
||||||
version "9.18.0"
|
version "9.18.0"
|
||||||
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
||||||
|
|
||||||
@@ -3300,6 +3402,10 @@ json-schema@0.2.3:
|
|||||||
version "0.2.3"
|
version "0.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
||||||
|
|
||||||
|
json-stable-stringify-without-jsonify@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
|
||||||
|
|
||||||
json-stable-stringify@^1.0.1:
|
json-stable-stringify@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
||||||
@@ -4196,9 +4302,9 @@ pkg-dir@^2.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
find-up "^2.1.0"
|
find-up "^2.1.0"
|
||||||
|
|
||||||
pluralize@^4.0.0:
|
pluralize@^7.0.0:
|
||||||
version "4.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762"
|
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
|
||||||
|
|
||||||
prelude-ls@~1.1.2:
|
prelude-ls@~1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
@@ -4212,9 +4318,9 @@ preserve@^0.2.0:
|
|||||||
version "0.2.0"
|
version "0.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
||||||
|
|
||||||
prettier@^1.7.3:
|
prettier@^1.8.2:
|
||||||
version "1.7.3"
|
version "1.8.2"
|
||||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.3.tgz#8e6974725273914b1c47439959dd3d3ba53664b6"
|
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.8.2.tgz#bff83e7fd573933c607875e5ba3abbdffb96aeb8"
|
||||||
|
|
||||||
pretty-format@^20.0.3:
|
pretty-format@^20.0.3:
|
||||||
version "20.0.3"
|
version "20.0.3"
|
||||||
@@ -5139,6 +5245,10 @@ to-fast-properties@^1.0.3:
|
|||||||
version "1.0.3"
|
version "1.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
||||||
|
|
||||||
|
to-fast-properties@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
||||||
|
|
||||||
tough-cookie@^2.3.2, tough-cookie@~2.3.0:
|
tough-cookie@^2.3.2, tough-cookie@~2.3.0:
|
||||||
version "2.3.2"
|
version "2.3.2"
|
||||||
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
||||||
|
|||||||
Reference in New Issue
Block a user