@solidstarters/create-solid-app 1.2.20 → 1.2.21

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/publish.js +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/create-solid-app",
3
- "version": "1.2.20",
3
+ "version": "1.2.21",
4
4
  "main": "index.js",
5
5
  "private": false,
6
6
  "publishConfig": {
package/publish.js CHANGED
@@ -6,6 +6,9 @@ try {
6
6
  console.log(`🔄 Updating package version (${versionType})...`);
7
7
  execSync(`npm version ${versionType}`, { stdio: "inherit" });
8
8
 
9
+ console.log("📦 Pushing to git ...");
10
+ execSync("git push", { stdio: "inherit" });
11
+
9
12
  console.log("📦 Publishing package...");
10
13
  execSync("npm publish", { stdio: "inherit" });
11
14