This repository was archived by the owner on Dec 1, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ gulp.task("webpack", function () {
24
24
// The js task could be replaced with gulp-coffee as desired.
25
25
gulp . task ( "js" , function ( ) {
26
26
return gulp
27
- . src ( "dist/Index .js" )
27
+ . src ( "dist/index .js" )
28
28
. pipe ( gulp . dest ( "dist/" ) ) ;
29
29
} ) ;
30
30
Original file line number Diff line number Diff line change 10
10
"type" : " git" ,
11
11
"url" : " http://github.com/channl/dynamodb-lambda-autoscale.git"
12
12
},
13
- "main" : " dist/Index .js" ,
13
+ "main" : " dist/index .js" ,
14
14
"options" : {
15
15
"mocha" : " --require resources/mocha-bootload src/**/__tests__/**/*.js"
16
16
},
19
19
"lint" : " eslint src" ,
20
20
"check" : " flow check" ,
21
21
"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"
24
24
},
25
25
"dependencies" : {
26
26
},
Original file line number Diff line number Diff line change 1
1
try {
2
- var lambda = require ( '../dist/Index .js' ) ;
2
+ var lambda = require ( '../dist/index .js' ) ;
3
3
4
4
process . chdir ( './dist' ) ;
5
5
You can’t perform that action at this time.
0 commit comments