@solidstarters/solid-core 1.2.41 → 1.2.43

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.41",
3
+ "version": "1.2.43",
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,6 +5,9 @@ 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" });
package/src/index.ts CHANGED
@@ -218,6 +218,9 @@ export * from './services/setting.service'
218
218
  //softDeleteAwareEventSubscriber.subscriber.ts
219
219
  export * from './subscribers/model.subscriber'
220
220
  export * from './subscribers/softDeleteAwareEventSubscriber.subscriber' //rename
221
+ export * from './subscribers/view-metadata.subscriber' //rename
222
+
223
+
221
224
 
222
225
  export * from './transformers/array-transformer'
223
226
  export * from './transformers/boolean-transformer'