Skip to content

Releases: dl-tg/scaffolder

v1.2.0

12 Feb 21:52
d8a4526
Compare
Choose a tag to compare

Notes

  • Added support for deep nester folder-file creation

v1.1.9

05 Aug 11:15
6dea476
Compare
Choose a tag to compare

Notes

  • name flag is optional, if not specified then will scaffold in current directory
  • Fix not automatically appending YAML extension when looking into current directory

v1.1.8

02 Aug 20:49
Compare
Choose a tag to compare

Notes

  • Support for variables in folder/file names. To reference a variable in a folder/file name, simply wrap it in double quotes like "{var}": ...
  • Major code refactor, some optimizations

MacOS

If you have MacBook M1 or later, download scaffolder_macos_silicon
If you have an Intel-based MacBook, download scaffolder_macos_intel

v1.1.7

23 Jul 20:35
c1a3c07
Compare
Choose a tag to compare

Notes

  • --variables - New flag introduced to allow you set yaml varibales which can be used when scaffolding your project. These variables would be replaced in-memory yaml file and produce the desired output

v1.1.6

22 Jul 21:11
e4f4081
Compare
Choose a tag to compare

Notes

  • Added a new flag --remember which is a boolean defaulting to false. It is used to save the custom path to config folder with yaml files, specified in --configDir flag, avoiding the need to specify the path each time. To reset, set --configDir to "". The custom path is saved to a text file, which is located in same directory as scaffolder executable, meaning you can edit the path without running the tool itself.

v1.1.5

22 Jul 13:25
861f9bf
Compare
Choose a tag to compare

Notes

  • Changed name of config folder: scaffolder-configs -> .scaffolder. It is a dotfile, meaning it's hidden by default, so you should either manipulate it using a terminal or toggle visiblity of hidden folders. Please rename the folder for compatiblity with this version
  • --configdir - new flag using which you can specify path to your custom config folder. Example below, it looks for the yaml config inside path specified in configdir which is .custom_configs folder in home directory (Unix)
scaffold --name test --yaml cpp --configdir "~/.custom_configs"
  • If you want to get yaml in current directory, make sure it doesn't exist in .scaffolder and configdir is empty. The usage is same as normal.
  • Better comments in the code

v1.1

21 Jul 21:53
7b4d620
Compare
Choose a tag to compare

All your scaffolder YAML configs should be stored in scaffolder-configs folder in your home directory. (~/scaffolder-configs for Unix, %USERPROFILE%/scaffolder-configs for Windows). Make sure to create it and populate it with configs you need.

v1.0

21 Jul 17:49
427bee3
Compare
Choose a tag to compare

First stable version of Scaffolder