create-application-template 1.2.1 → 1.2.2
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.
|
@@ -139,6 +139,11 @@ const run = async () => {
|
|
|
139
139
|
// install project dependencies
|
|
140
140
|
execCommand(`npm --prefix ${projectPaths.root} install`)
|
|
141
141
|
|
|
142
|
+
// run scripts
|
|
143
|
+
if (argv.ccrate) {
|
|
144
|
+
execCommand(`npm --prefix ${projectPaths.root} run test:updateSnapshot`)
|
|
145
|
+
}
|
|
146
|
+
|
|
142
147
|
// finish up
|
|
143
148
|
console.info('')
|
|
144
149
|
console.info('Thanks for using Create Application Template!')
|