From ec2efbd21c35cc3af7af3c92dc4541f139f9b87c Mon Sep 17 00:00:00 2001 From: Mike Bunce Date: Wed, 21 Nov 2018 11:46:02 -0800 Subject: [PATCH] fix(community-testimonial): refactor proptypes package --- .all-contributorsrc | 36 ++++++++++++++++++++++++++++ README.md | 2 +- packages/Testimonial/Testimonial.jsx | 3 +-- packages/Testimonial/package.json | 2 +- 4 files changed, 39 insertions(+), 4 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 9195e8280..c251aa34e 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -86,6 +86,42 @@ "contributions": [ "tds" ] + }, + { + "login": "Andrew-K-Lam", + "name": "Andrew Lam", + "avatar_url": "https://avatars0.githubusercontent.com/u/931411?v=4", + "profile": "https://github.com/Andrew-K-Lam", + "contributions": [ + "tds" + ] + }, + { + "login": "jraff", + "name": "Jordan Raffoul", + "avatar_url": "https://avatars0.githubusercontent.com/u/1036187?v=4", + "profile": "http://jordanraffoul.com", + "contributions": [ + "tds" + ] + }, + { + "login": "nicmak", + "name": "Nicholas Mak", + "avatar_url": "https://avatars2.githubusercontent.com/u/22725151?v=4", + "profile": "https://github.com/nicmak", + "contributions": [ + "tds" + ] + }, + { + "login": "renovate[bot]", + "name": "renovate[bot]", + "avatar_url": "https://avatars1.githubusercontent.com/in/2740?v=4", + "profile": "https://github.com/apps/renovate", + "contributions": [ + "tds" + ] } ] } diff --git a/README.md b/README.md index 36c87a55d..058f38b3f 100644 --- a/README.md +++ b/README.md @@ -65,5 +65,5 @@ To learn how to make contributions to TDS Community, See the [contributing guide | [
Marco Donnici](https://github.com/marcod1419)
[](#tds-marcod1419 "") | [
Ryan Oglesby](http://ryanogles.by)
[](#tds-ryanoglesby08 "") | [
Enrico Sacchetti](http://theetrain.ca)
[](#tds-theetrain "") | [
Jack Reeves](https://github.com/jackreeves)
[](#tds-jackreeves "") | [
Jesse David Peterson](http://www.jes.dav.pet)
[](#tds-jesdavpet "") | [
Mujtaba Hasni](https://github.com/mujtabahasni)
[](#tds-mujtabahasni "") | [
Anatolii Gorovyi](https://github.com/agorovyi)
[](#tds-agorovyi "") | | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -| [
Christina L.](https://github.com/Christina-Lo)
[](#tds-Christina-Lo "") | +| [
Christina L.](https://github.com/Christina-Lo)
[](#tds-Christina-Lo "") | [
Andrew Lam](https://github.com/Andrew-K-Lam)
[](#tds-Andrew-K-Lam "") | [
Jordan Raffoul](http://jordanraffoul.com)
[](#tds-jraff "") | [
Nicholas Mak](https://github.com/nicmak)
[](#tds-nicmak "") | [
renovate[bot]](https://github.com/apps/renovate)
[](#tds-renovate[bot] "") | diff --git a/packages/Testimonial/Testimonial.jsx b/packages/Testimonial/Testimonial.jsx index d443f2ccd..48aaf1cae 100644 --- a/packages/Testimonial/Testimonial.jsx +++ b/packages/Testimonial/Testimonial.jsx @@ -5,8 +5,7 @@ import Box from '@tds/core-box' import Card from '@tds/core-card' import Paragraph from '@tds/core-paragraph' import safeRest from '@tds/shared-safe-rest' - -import { componentWithName } from '../../shared/utils/propTypes' +import { componentWithName } from '@tds/util-prop-types' import styles from './Testimonial.scss' diff --git a/packages/Testimonial/package.json b/packages/Testimonial/package.json index 29101f92f..45a411135 100644 --- a/packages/Testimonial/package.json +++ b/packages/Testimonial/package.json @@ -33,6 +33,6 @@ }, "devDependencies": { "@tds/shared-safe-rest": "^1.0.0", - "@tds/util-proptypes": "^1.0.0" + "@tds/util-prop-types": "^1.0.0" } }