catylst 1.0.13 → 1.0.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/postinstall.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catylst",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Generate customized Kotlin Multiplatform projects with an interactive wizard",
5
5
  "keywords": [
6
6
  "kotlin",
package/postinstall.js CHANGED
@@ -289,4 +289,5 @@ function downloadJar() {
289
289
  print(" " + dim("Or non-interactive:"));
290
290
  print(" " + dim("catylst --package com.example.app --name MyApp"));
291
291
  print("");
292
+ process.exit(0);
292
293
  })();