From ab9cdd4954c7691a1d8ef4ef4017097510499698 Mon Sep 17 00:00:00 2001 From: Nick Christensen Date: Sat, 19 Nov 2016 17:05:28 -0600 Subject: [PATCH] Fix `bundled.js` file path `src` => `lib` Fixes #15 --- bundled.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundled.js b/bundled.js index bcebe0a..89405fc 100644 --- a/bundled.js +++ b/bundled.js @@ -3,6 +3,6 @@ // this only works in webpack, but it's pretty rad: require('pikaday/css/pikaday.css'); -var ReactPikaday = require('./src/Pikaday'); +var ReactPikaday = require('./lib/Pikaday'); module.exports = ReactPikaday;