Kamil Biedrzycki
Kamil Biedrzycki
Maybe it is possible to configure it using https://github.com/localstack/localstack? It has support for lambda, api gateway and dynamodb. These is also a plugin for serverless framework to integrate with localstack...
@stevecrozz - right, that might be true. I've made some research and found out https://www.stacktracejs.com/ which might be helpful here, I'll play around and let you know 👍
@yoonwaiyan @miladmeidanshahi @jsg2021 @rud this is on my personal roadmap, I would like to add JS source maps support here in errbit (similar way how rollbar get's them). I'll keep...
We were able to temporarily fix this using [RouterService#urlFor](http://api.emberjs.com/ember/3.14/classes/RouterService/methods) method: ```js Controller.extend({ router: service(), actions: { moveUser() { // before: this.get('router').transitionTo(routeName, routeParamOne, routeParamTwo); // after: this.customTransition(routeName, routeParamOne, routeParamTwo); } },...
Could it be related to `"@stencil/core": "^1.3.0"` version used while creating components library? -- EDIT: Seems it's not, tested with `1.0.7` and issue remains.
@alexlafroscia thanks for replying! So, to confirm - yes, React works, and indeed, I had to import `loader`, I've simply followed docs that you've linked and it worked. About monorepo...
@alexlafroscia sure, not a problem, there's an output: ``` ➜ ember-example git:(master) ✗ yarn why ember-auto-import yarn why v1.17.3 [1/4] 🤔 Why do we have the module "ember-auto-import"...? [2/4] 🚚...
@alexlafroscia maybe I am the one that makes some silly mistake here, but, to clarify - should I import something in addition from `loader` directory somewhere in `ember-cli-build.js` or from...
Oh great, that's good to hear. But that's also something what I thought, I guess if there's something more needed you would mention about that in readme 😉 Sure, repo...
Great summary! All makes sense I guess. Let me reply in points: 1) `file:` behaviour is fine in package.json, this is "new" npm behaviour that allows to point to "local"...