diff --git a/packages/generator-nick/CHANGELOG.md b/packages/generator-nick/CHANGELOG.md index eddccc1..14a9535 100644 --- a/packages/generator-nick/CHANGELOG.md +++ b/packages/generator-nick/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.0.6 (2024-12-18) + +### Bugfix + +- Fix profiles templates @robgietema + ## 0.0.5 (2024-12-18) ### Bugfix diff --git a/packages/generator-nick/generators/app/index.js b/packages/generator-nick/generators/app/index.js index c509925..0ada4f7 100644 --- a/packages/generator-nick/generators/app/index.js +++ b/packages/generator-nick/generators/app/index.js @@ -88,6 +88,12 @@ Run "npm install -g @robgietema/generator-nick" to update.`, }, }); + this.fs.copyTpl( + this.templatePath('src/profiles/default/metadata.json.tpl'), + this.destinationPath(base, 'src/profiles/default/metadata.json.tpl'), + this.globals, + ); + this.fs.copyTpl( this.templatePath('.gitignorefile'), this.destinationPath(base, '.gitignore'), diff --git a/packages/generator-nick/package.json b/packages/generator-nick/package.json index 6d3b369..29d38fb 100644 --- a/packages/generator-nick/package.json +++ b/packages/generator-nick/package.json @@ -9,7 +9,7 @@ } ], "license": "MIT", - "version": "0.0.5", + "version": "0.0.6", "repository": { "type": "git", "url": "git@github.com:robgietema/nick.git"