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!')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {