Skip to content

Commit

Permalink
Merge 'Replace lodash dependency with lodash.uniqueid fangpenlin#5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Falieson committed Mar 9, 2019
2 parents 12abd1e + 7a1ee95 commit 53152a9
Show file tree
Hide file tree
Showing 66 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"typescript": "^2.6.2"
},
"dependencies": {
"lodash": "^4.17.4",
"lodash.uniqueid": "^4.0.1",
"prop-types": "^15.6.0"
},
"importSort": {
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/BlazerShirt.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class BlazerShirt extends React.Component {
static optionValue = 'BlazerShirt'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/BlazerSweater.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class BlazerSweater extends React.Component {
static optionValue = 'BlazerSweater'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/CollarSweater.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/GraphicShirt.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'
import Graphics from './Graphics'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/Graphics.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import { GraphicOption, Selector } from '../../options'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/Hoodie.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/Overall.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/ShirtCrewNeck.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/ShirtScoopNeck.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/clothes/ShirtVNeck.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import Colors from './Colors'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/eyes/Squint.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Squint extends React.Component {
static optionValue = 'Squint'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/Concerned.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Concerned extends React.Component {
static optionValue = 'Concerned'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/Grimace.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Grimace extends React.Component {
static optionValue = 'Grimace'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/ScreamOpen.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class ScreamOpen extends React.Component {
static optionValue = 'ScreamOpen'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/Smile.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Smile extends React.Component {
static optionValue = 'Smile'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/Tongue.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Tongue extends React.Component {
static optionValue = 'Tongue'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/face/mouth/Vomit.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Vomit extends React.Component {
static optionValue = 'Vomit'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/Eyepatch.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/Hat.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/Hijab.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import HatColor from './HatColor'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairBigHair.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairBob.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairBun.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairCurly.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairCurvy.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairDreads.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairFrida.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairFro.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairFroBand.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairMiaWallace.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairNotTooLong.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairShavedSides.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairStraight.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairStraight2.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/LongHairStraightStrand.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/NoHair.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'

Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairDreads01.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairDreads02.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairFrizzle.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShaggy.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShaggyMullet.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShortCurly.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShortFlat.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShortRound.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairShortWaved.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairSides.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairTheCaesar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/ShortHairTheCaesarSidePart.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HairColor from './HairColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/Turban.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HatColor from './HatColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/WinterHat1.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HatColor from './HatColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/WinterHat2.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HatColor from './HatColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/WinterHat3.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HatColor from './HatColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/WinterHat4.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

import FacialHair from './facialHair'
import HatColor from './HatColor'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/accessories/Kurt.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Kurt extends React.Component {
static optionValue = 'Kurt'
Expand Down
2 changes: 1 addition & 1 deletion src/avatar/top/accessories/Prescription01.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react'
import { uniqueId } from 'lodash'
import * as uniqueId from 'lodash.uniqueid'

export default class Prescription01 extends React.Component {
static optionValue = 'Prescription01'
Expand Down
Loading

0 comments on commit 53152a9

Please sign in to comment.