- Apr 08, 2019
-
-
Jacob Parish authored
- require karma tests - temporarily turn off module transformation on airbnb-preset
-
- Apr 03, 2019
-
-
Jacob Parish authored
-
- Apr 09, 2018
-
-
João Vieira authored
-
- Apr 08, 2018
-
-
João Vieira authored
-
- Oct 23, 2017
-
-
Joe Lencioni authored
I want to do some optimizations on how react-dates is built, to help reduce the bundle size impact of using this project. The first step I see is reducing the size of each of the components, which we can achieve by avoiding building them with webpack. From what I can tell, webpack was only brought in to support getting SVGs in these components. We can pretty easily replace this with a Babel transform that will achieve the same result, but with less complexity in our build, and a little less overhead in the resulting components. Before this change: ``` ~/react-dates ❯❯❯ du -hs lib/components 420K lib/components ``` After this change: ``` ~/react-dates ❯❯❯ du -hs lib/components 348K lib/components ```
-
- Oct 06, 2017
-
-
Maja Wichrowska authored
-
- Jun 29, 2017
-
-
Maja Wichrowska authored
-
- Sep 07, 2016
-
-
Maja Wichrowska authored
-
Ian Christian Myers authored
Since the primary use-case for react-dates is in a browser environment it seems appropriate to run the test suite in a browser. I've added configuration to run the test suite in Firefox via Karma with the necessary adjustments to the Travis config. I've commented the two places in the Karma config where I'm doing something odd in order to make things work.
-