-
I'm currently using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
This is expected, yes – and no, we would not want to restart the entire Sandbox due to a code change in Moreover, the plugin doesn't have any general awareness of your particular shared code affordances, as that's something that's left up to your specific implementation. For example, you may use So to get back to the problem at hand, I do think it makes sense to trigger some recompiles given the above circumstances; I wonder if perhaps we should look at your |
Beta Was this translation helpful? Give feedback.
This is expected, yes – and no, we would not want to restart the entire Sandbox due to a code change in
src/shared
. As for the TS plugin, it doesn't have any awareness of which Lambdas use your shared code, and which do not.Moreover, the plugin doesn't have any general awareness of your particular shared code affordances, as that's something that's left up to your specific implementation. For example, you may use
src/shared
(the normal Architect convention), but someone else may usesrc/ts/shared
, orsrc/ts-shared
, etc. to separate their shared TypeScript from shared JavaScript. (See also: https://github.com/architect-examples/typescript-example#built-in--ts-friendly-approaches-to-shared…