-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
55 lines (51 loc) · 1.33 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var grunt = require('grunt');
var fs = require('fs');
var outputsFile = 'stack-outputs.json';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
create_stack: {
stack: 'lambda2',
template: 'stack-definition.json'
},
describe_stack: {
outputs: outputsFile
},
jshint: {
files: ['Gruntfile.js', 'index.js', 'tasks/*.js'],
options: {
jshintrc: true,
reporter: require('jshint-stylish')
}
},
watch: {
files: ['.jshintrc', '<%= jshint.files %>'],
tasks: ['jshint']
},
lambda_invoke: {
default: {
options: {
}
}
},
lambda_deploy: {
default: {
arn: JSON.parse(fs.readFileSync(outputsFile, 'utf8'))['StackOutputs']['LambdaFunctionARN'],
options: {
profile: 'dliggat'
}
}
},
lambda_package: {
default: {
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-aws-lambda');
grunt.loadTasks('tasks');
grunt.registerTask('default', ['jshint']);
grunt.registerTask('provision', ['create_stack']);
grunt.registerTask('deploy', ['describe_stack',
'lambda_package',
'lambda_deploy']);