From b8411b2dc217effc51341d48c2feecb06833e632 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 9 Jun 2015 17:42:10 +0100 Subject: [PATCH] Use .js extension in example for consistency --- example/lib/{index.jsx => index.js} | 0 example/package.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename example/lib/{index.jsx => index.js} (100%) diff --git a/example/lib/index.jsx b/example/lib/index.js similarity index 100% rename from example/lib/index.jsx rename to example/lib/index.js diff --git a/example/package.json b/example/package.json index a00baafad7..148a4e6246 100644 --- a/example/package.json +++ b/example/package.json @@ -13,7 +13,7 @@ "watchify": "^3.2.1" }, "scripts": { - "build": "browserify -t [ envify --NODE_ENV production ] -t reactify -g uglifyify lib/index.jsx -o bundle.js", - "start": "watchify -v -d -t reactify lib/index.jsx -o bundle.js" + "build": "browserify -t [ envify --NODE_ENV production ] -t reactify -g uglifyify lib/index.js -o bundle.js", + "start": "watchify -v -d -t reactify lib/index.js -o bundle.js" } }