@robgietema/generator-nick 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/app/index.js +6 -0
- package/package.json +1 -1
- package/CHANGELOG.md +0 -31
package/generators/app/index.js
CHANGED
|
@@ -88,6 +88,12 @@ Run "npm install -g @robgietema/generator-nick" to update.`,
|
|
|
88
88
|
},
|
|
89
89
|
});
|
|
90
90
|
|
|
91
|
+
this.fs.copyTpl(
|
|
92
|
+
this.templatePath('src/profiles/default/metadata.json.tpl'),
|
|
93
|
+
this.destinationPath(base, 'src/profiles/default/metadata.json'),
|
|
94
|
+
this.globals,
|
|
95
|
+
);
|
|
96
|
+
|
|
91
97
|
this.fs.copyTpl(
|
|
92
98
|
this.templatePath('.gitignorefile'),
|
|
93
99
|
this.destinationPath(base, '.gitignore'),
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## 0.0.5 (2024-12-18)
|
|
4
|
-
|
|
5
|
-
### Bugfix
|
|
6
|
-
|
|
7
|
-
- Fix profiles templates @robgietema
|
|
8
|
-
|
|
9
|
-
## 0.0.4 (2024-12-18)
|
|
10
|
-
|
|
11
|
-
### Feature
|
|
12
|
-
|
|
13
|
-
- Add Node 23 support @robgietema
|
|
14
|
-
|
|
15
|
-
## 0.0.3 (2024-12-13)
|
|
16
|
-
|
|
17
|
-
### Bugfix
|
|
18
|
-
|
|
19
|
-
- Change seed in config @robgietema
|
|
20
|
-
|
|
21
|
-
## 0.0.2 (2024-12-13)
|
|
22
|
-
|
|
23
|
-
### Bugfix
|
|
24
|
-
|
|
25
|
-
- Change templates to match new config @robgietema
|
|
26
|
-
|
|
27
|
-
## 0.0.1 (2022-10-11)
|
|
28
|
-
|
|
29
|
-
### Feature
|
|
30
|
-
|
|
31
|
-
- Initial release @robgietema
|