Serverless async function error during deploy

Setting up a new serverless environment 1.29.0 with node 6.10 AWS Lambda runtime.

When I deploy a project I’m getting an error when it comes to the packaging up all the various cloudformation files.

serverless.yml

resources:
Resources: {file(cloudformation/index.js):get-{self:custom.region}}
index.js

var mergeYaml = require(‘merge-yaml’);

module.exports[“get-ap-southeast-2”] = async() => {
// module.exports[“get-ap-southeast-2”] => {
console.log(“Using CF script for ap-southeast-2”);
return mergeYaml([
“./cloudformation/acm.yml”,
“./cloudformation/iam.yml”,
// “./cloudformation/cognito.yml”,
“./cloudformation/iot.yml”,
// “./cloudformation/dynamodb.yml”,
“./cloudformation/dns.yml”
// “./cloudformation/s3.yml”
]);
}
Errors on async

SyntaxError: Unexpected token ( /home/ec2-user/marlin-service/base/cloudformation/index.js:3 module.exports[“get-ap-southeast-2”] = async() => {

node --version = 6.10.3 process.version = v6.10.3

I have a webpack.config.js in the root of the project I am trying to deplay

const StatsWriterPlugin = require(“webpack-stats-plugin”).StatsWriterPlugin;
const webpack = require(‘webpack’);
const BabiliPlugin = require(‘babili-webpack-plugin’);

module.exports = {
target: ‘node’,
externals: [/aws-sdk/],
plugins: [
new StatsWriterPlugin(),
new BabiliPlugin(),
],
output: {
// path: path.resolve(‘dist/assets’),
publicPath: ‘’
},
module: {
rules: [{
test: /src/.*.js$/,
exclude: [
/node_modules/,
/test/
],
loader: ‘babel-loader’,
options: {
presets: [
[
‘env’,
{
target: { node: 6.10 }, // Node version on AWS Lambda
useBuiltIns: true,
modules: false,
loose: true,
},
],
‘es2015’,
‘stage-0’,
],
plugins: [‘transform-runtime’]
},
}, ],
}
};