Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit 4860600

Browse files
committed
Fixes case-insensitive issues raised in #8
1 parent f43c8ec commit 4860600

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gulp.task("webpack", function () {
2424
// The js task could be replaced with gulp-coffee as desired.
2525
gulp.task("js", function () {
2626
return gulp
27-
.src("dist/Index.js")
27+
.src("dist/index.js")
2828
.pipe(gulp.dest("dist/"));
2929
});
3030

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "http://github.com/channl/dynamodb-lambda-autoscale.git"
1212
},
13-
"main": "dist/Index.js",
13+
"main": "dist/index.js",
1414
"options": {
1515
"mocha": "--require resources/mocha-bootload src/**/__tests__/**/*.js"
1616
},
@@ -19,8 +19,8 @@
1919
"lint": "eslint src",
2020
"check": "flow check",
2121
"build": "gulp dist",
22-
"start": "node ./scripts/Start.js",
23-
"debug": "node-debug ./scripts/Start.js"
22+
"start": "node ./scripts/start.js",
23+
"debug": "node-debug ./scripts/start.js"
2424
},
2525
"dependencies": {
2626
},

scripts/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
try {
2-
var lambda = require('../dist/Index.js');
2+
var lambda = require('../dist/index.js');
33

44
process.chdir('./dist');
55

0 commit comments

Comments
 (0)