Is it a goal of Amper to make it easier to write c...
# amper
c
Is it a goal of Amper to make it easier to write convention plugins? In a lot of situations, convention plugins don't have much logic. They are just bundling together of other plugins and dependencies. The easy way to do this with gradle was
apply from foo.gradle
I wonder if Amper could be able to bring back the simplicity of
apply from
for writing convention plugins.
a
Generally speaking, Amper’s goal is to make the developer’s experience better, ease the onboarding and build maintenance, and provide seamless support in the IDE. In the current Amper design common configuration are supported via templates. So applying configuration conventions is as simple as writing:
Copy code
apply:
  - myConvention.module-template.yaml
Not sure if it addresses your statement or you meant something else.
c
That's exactly what I was looking for. Thanks!
👍 1