platform/templates
Alex d74fcb45a3
Add lang UT (#2297)
Signed-off-by: Dvinyanin Alexandr <dvinyanin.alexandr@gmail.com>
2022-10-13 14:16:39 +06:00
..
assets Add lang UT (#2297) 2022-10-13 14:16:39 +06:00
default Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
model Allow to specify project to sprints (#2275) 2022-09-22 00:32:48 +07:00
platform Allow to specify project to sprints (#2275) 2022-09-22 00:32:48 +07:00
ui Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
webpack Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
apply.js Enable linting build phase (#966) 2022-02-10 10:04:18 +01:00
readme.md Enable linting build phase (#966) 2022-02-10 10:04:18 +01:00

Project templates

Folder contains a projeect templates and functionality to apply template values to all projects inside rush multi repo.

Any folder with package.json inside templates are template, so it is possible to apply it.

Templates will be matched using peerDependencies entries should be available inside dependencies of project template is matched against.

So ui template with peer dependency to svelte, will be matched to any UI plugin.

If no template is matched for project then default template will be used.

Explicit template selection

If package.json contains "template" field, template from templates with matched name will be selected.

Apply rules

  • If file in template folder is pressent and file in project folder is not, it will be copied.
    • If package.json contain '#replaces' section with filename, file will be overriten in any case.
    • If filename in template starts with ~ then file in project will be removed instead of add.
  • package.json
    • dependencies - will be updated to contain all values from template package.json dependencies with exact same versions.
    • devDependencies - will be updated to contain all values from template package.json dependencies with exact same versions.
    • scripts - will be updated to contain all values from template package.json dependencies with exact same versions.