Robb Lovell
Robb Lovell
## Not Working Serverless Javascript Configuration: helloPlugin.js ``` const helloPlugin = { name: 'hello', setup(config) { console.log('Hello World') }, } exports.helloPlugin = helloPlugin; ``` serverless.js ``` const { helloPlugin }...
If the serverless.js is converted to a serverless.yml, a clue is given: ``` frameworkVersion: '3' service: hello-world plugins: - serverless-esbuild - serverless-offline custom: esbuild: entryPoints: - app.js platform: node target:...
I have raised this in the serverless framework main repo to see if there are any insights that can be found there: https://github.com/serverless/serverless/issues/11388
Example repo: https://github.com/robblovell/plugin-missing-setup-function
Background: http://stackoverflow.com/questions/463597/what-does-inil-true-mean
I would like to see this option too.
I have also been trying to use this feature to do a string replace using gulp-replace without success. It appears that when the files are being written out using this.fs.copyTpl,...
There appears to be some weirdness with the "this" pointer here. Splicing in a hack into "_writeFiles" shows that if the transformStreams stay connected to this, the code works as...
It appears that if you use "composeWith" that you loose some connections downstream. In the project where there is a problem, the example code that isn't working is chained like...
Cool. I did back off from using compseWith in favor of a branching questioning strategy with my own branching organization. I was hoping to use the compse with to manage...