@simple-reporting/base 1.0.26 → 1.0.27

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/dev/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "postinstall": "srl prepare"
25
25
  },
26
26
  "dependencies": {
27
- "@simple-reporting/base": "^1.0.26",
27
+ "@simple-reporting/base": "^1.0.27",
28
28
  "axios": "^1.12.2",
29
29
  "chalk": "^5.6.2",
30
30
  "exceljs": "^4.4.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-reporting/base",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Manage srl templates, build and publish",
5
5
  "repository": {
6
6
  "url": "https://github.com/mmssolutionsio/simple-reporting-library"
@@ -17,6 +17,9 @@ export async function doPublish(version = null) {
17
17
  try {
18
18
  const publishVersion = await preparePublish(version);
19
19
 
20
+ await execSync(`npm publish`, { stdio: 'inherit' });
21
+
22
+ /*
20
23
  const tag = `v${publishVersion.split('.')[0]}-lts`;
21
24
 
22
25
  await execSync(`npm publish --tag ${tag}`, { stdio: 'inherit' });
@@ -32,6 +35,8 @@ export async function doPublish(version = null) {
32
35
  );
33
36
  }
34
37
 
38
+ */
39
+
35
40
  console.log(
36
41
  `Package ${packageName}@${publishVersion} published successfully!`,
37
42
  );