impress icon indicating copy to clipboard operation
impress copied to clipboard

Support nested applications as extensions

Open nechaido opened this issue 3 years ago • 1 comments

We need an ability to have an impress application template as a dependency.

It should allow us to write plugins locally so that it would be loaded into template server located in node_modules.

nechaido avatar Jul 27 '21 10:07 nechaido

application/config/application.js

({
  extends: [
    'repoName', // find in `node_modules/repoName`
    'repoName/application', // find in `node_modules/repoName/application`
    '../repo/application', // relative path
    '/home/marcus/projects/repoName/application', // absolute path
  ],
});

tshemsedinov avatar Sep 26 '21 17:09 tshemsedinov