@solidstarters/solid-core 1.2.42 → 1.2.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.42",
3
+ "version": "1.2.44",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/publish.js CHANGED
@@ -5,13 +5,13 @@ const versionType = process.argv[2] || "patch"; // Default to patch if not speci
5
5
  try {
6
6
  console.log(`🔄 Updating package version (${versionType})...`);
7
7
  execSync(`npm version ${versionType}`, { stdio: "inherit" });
8
+
9
+ console.log("📦 Pushing to git ...");
10
+ execSync("git push", { stdio: "inherit" });
8
11
 
9
12
  console.log("📦 Publishing package...");
10
13
  execSync("npm publish", { stdio: "inherit" });
11
14
 
12
- console.log("📦 Pushing to git ...");
13
- execSync("git push", { stdio: "inherit" });
14
-
15
15
  console.log("✅ Published successfully!");
16
16
  } catch (error) {
17
17
  console.error("❌ Error:", error.message);