File tree 11 files changed +12
-12
lines changed
11 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
- const { findExportedComponents } = require ( 'extract-react- types' ) ;
1
+ const { findExportedComponents } = require ( '@ extract-types/core ' ) ;
2
2
3
3
module . exports = babel => {
4
4
let t = babel . types ;
Original file line number Diff line number Diff line change 17
17
],
18
18
"author" : " Mitchell Hamilton" ,
19
19
"dependencies" : {
20
- "extract-react- types" : " ^0.22.0"
20
+ "@ extract-types/core " : " ^0.22.0"
21
21
},
22
22
"devDependencies" : {
23
23
"@babel/core" : " ^7.4.4" ,
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
3
3
const path = require ( 'path' ) ;
4
- const { extractReactTypes } = require ( 'extract-react- types' ) ;
4
+ const { extractReactTypes } = require ( '@ extract-types/core ' ) ;
5
5
6
6
const devProps = {
7
7
component : {
Original file line number Diff line number Diff line change 14
14
" documentation"
15
15
],
16
16
"dependencies" : {
17
- "extract-react- types" : " ^0.22.0"
17
+ "@ extract-types/core " : " ^0.22.0"
18
18
}
19
19
}
Original file line number Diff line number Diff line change 12
12
],
13
13
"devDependencies" : {
14
14
"babel-jest" : " ^24.7.1" ,
15
- "extract-react- types" : " ^0.22.0"
15
+ "@ extract-types/core " : " ^0.22.0"
16
16
},
17
17
"dependencies" : {
18
18
"@babel/runtime" : " ^7.4.4"
Original file line number Diff line number Diff line change 8
8
/* eslint-disable no-undef */
9
9
10
10
/*::
11
- import * as K from 'extract-react- types'
11
+ import * as K from '@ extract-types/core '
12
12
*/
13
13
14
14
import { resolveToLast , resolveFromGeneric , reduceToObj } from './utils' ;
Original file line number Diff line number Diff line change 1
1
// @flow
2
- import { extractReactTypes } from 'extract-react- types' ;
2
+ import { extractReactTypes } from '@ extract-types/core ' ;
3
3
import convert from './src' ;
4
4
5
5
const assembleERTAST = ( propTypes , defaultProps , type = 'flow' ) => {
Original file line number Diff line number Diff line change 16
16
"dependencies" : {
17
17
"@babel/runtime" : " ^7.4.4" ,
18
18
"@emotion/core" : " ^10.0.14" ,
19
- "kind2string" : " ^0.6.3" ,
19
+ "@extract-types/ kind2string" : " ^0.6.3" ,
20
20
"react-markings" : " ^1.2.0"
21
21
},
22
22
"files" : [
25
25
"devDependencies" : {
26
26
"enzyme" : " ^3.3.0" ,
27
27
"enzyme-adapter-react-16" : " ^1.1.1" ,
28
- "extract-react- types" : " ^0.22.0" ,
28
+ "@ extract-types/core " : " ^0.22.0" ,
29
29
"jsdom" : " ^11.7.0" ,
30
30
"react" : " ^16.3.1" ,
31
31
"react-addons-test-utils" : " ^15.6.2" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import type { Components } from '../components';
10
10
import AddBrackets from './AddBrackets' ;
11
11
import { colors } from '../components/constants' ;
12
12
/*::
13
- import * as K from 'extract-react- types'
13
+ import * as K from '@ extract-types/core '
14
14
*/
15
15
16
16
export const SIMPLE_TYPES = [
Original file line number Diff line number Diff line change 3
3
import { shallow , configure } from 'enzyme' ;
4
4
import React from 'react' ;
5
5
import Adapter from 'enzyme-adapter-react-16' ;
6
- import { extractReactTypes } from 'extract-react- types' ;
6
+ import { extractReactTypes } from '@ extract-types/core ' ;
7
7
import components from '../components' ;
8
8
import prettyConvert , { TypeMinWidth } from './converters' ;
9
9
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
import React from 'react' ;
3
3
import { mount , configure } from 'enzyme' ;
4
- import { extractReactTypes } from 'extract-react- types' ;
4
+ import { extractReactTypes } from '@ extract-types/core ' ;
5
5
import Adapter from 'enzyme-adapter-react-16' ;
6
6
7
7
import Props from './' ;
You can’t perform that action at this time.
0 commit comments