serverless-runtime-babel icon indicating copy to clipboard operation
serverless-runtime-babel copied to clipboard

Babel runtime for v.0.5 of the Serverless Framework

Results 13 serverless-runtime-babel issues
Sort by recently updated
recently updated
newest added

At the moment it seems that using "babel" as the s-function runtime, doesn't give you the option to select between the available Node runtimes (0.10 or 4.3), and it selects...

Don't mind giving some time to update this, but currently doing babel manually and package contains all handlers at the moment in the hope this plugin will be updated soon....

Adds a "cb" parameter to the ENV var pre load handler, allowing callbacks to be used: e.g. of the form `handler (event, context, cb) => {}`. Had a function looking...

Hi. I wonder if the "cleanup" step could become optional, or at least exclude more files. I'm treating some js files as data and consequently they get removed from the...

The babel transformation seems to add a require('../package.json') to the serverless deployment package which is not in the deployment zip. errorMessage "Cannot find module '../package.json'" errorType "Error" stackTrace There is...

Hi, There is a module binary_parser which is a dependency of mongodb which doesn't seem to play nice with browserify (https://github.com/jaredallard/nexe/issues/192). This is somewhat similar to the fact that the...

I have a solution to this problem I was facing: https://github.com/serverless/serverless-runtime-babel/issues/17 Any module excluded from browserify's bundle is not deleted by the cleapup step.

The `context` object is being [recreated](https://github.com/serverless/serverless-runtime-babel/blob/master/lib/babel-runner.js#L32) without the `getRemainingTimeInMillis` function, so `sls function run` crashes if it's used in the handler.

Rollup allows you to treeshake deps before a bundle is created using es6 import syntax to only include dep functions that are used. [`rollup`](https://github.com/rollup/rollup) Because this function is doing the...

It would be great if support for the node4 runtime in lambda could get added. We could then switch presets from `es2015` to `es2015-node4` to reduce the amount of transpiling...

enhancement
help wanted