@elliemae/pui-cli 8.54.8 → 8.55.3

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/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Command Line Interface for UI Applications & Libraries
2
2
 
3
- [![Build Status](https://jenkins.dco.elmae/job/UIPlatform/job/Dev/job/pui-cli/job/master/badge/icon)](https://jenkins.dco.elmae/job/UIPlatform/job/Dev/job/pui-cli/job/master/)
3
+ [Build Job](https://jenkinsbuild.elliemae.cloud/job/UIPlatform/job/pui-cli/job/master)
4
4
 
5
- [SonarQube Report](https://sonar.ellielabs.com/overview?id=elliemae.pui.cli-master)
5
+ [SonarQube Report](https://sonarqube.jenkins.elliemae.cloud/overview?id=elliemae.pui.cli-master)
6
6
 
7
7
  ## Features
8
8
 
@@ -22,7 +22,7 @@
22
22
 
23
23
  ### v7 to v8
24
24
 
25
- [Changelog](https://confluence.elliemae.io/display/FEAE/CLI+ChangeLog#CLIChangeLog-v8)
25
+ [Changelog](https://confluence.ice.com/display/FEAE/CLI+ChangeLog#CLIChangeLog-v8)
26
26
 
27
27
  ### v6 to v7
28
28
 
package/dist/cjs/cli.js CHANGED
File without changes
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
- "sideEffects": false
3
+ "sideEffects": false,
4
+ "publishConfig": {
5
+ "access": "public"
6
+ }
4
7
  }
@@ -21,6 +21,7 @@ module.exports = {
21
21
  },
22
22
  ],
23
23
  '@semantic-release/npm',
24
+ './semantic-release-plugin.cjs',
24
25
  '@semantic-release/github',
25
26
  ],
26
27
  };
@@ -0,0 +1,13 @@
1
+ const fs = require('fs');
2
+
3
+ module.exports = {
4
+ success: async ({ nextRelease }) => {
5
+ if (!nextRelease) return;
6
+ const distTag = nextRelease.channel || 'latest';
7
+ const fname = 'publish-info.json';
8
+ if (!fs.existsSync(fname)) {
9
+ fs.writeFileSync(fname, JSON.stringify(nextRelease, null, 2));
10
+ }
11
+ process.env.DIST_TAG = distTag;
12
+ },
13
+ };
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
- "sideEffects": false
3
+ "sideEffects": false,
4
+ "publishConfig": {
5
+ "access": "public"
6
+ }
4
7
  }
@@ -21,6 +21,7 @@ module.exports = {
21
21
  },
22
22
  ],
23
23
  '@semantic-release/npm',
24
+ './semantic-release-plugin.cjs',
24
25
  '@semantic-release/github',
25
26
  ],
26
27
  };
@@ -0,0 +1,13 @@
1
+ const fs = require('fs');
2
+
3
+ module.exports = {
4
+ success: async ({ nextRelease }) => {
5
+ if (!nextRelease) return;
6
+ const distTag = nextRelease.channel || 'latest';
7
+ const fname = 'publish-info.json';
8
+ if (!fs.existsSync(fname)) {
9
+ fs.writeFileSync(fname, JSON.stringify(nextRelease, null, 2));
10
+ }
11
+ process.env.DIST_TAG = distTag;
12
+ },
13
+ };
@@ -0,0 +1,3 @@
1
+ export function success({ nextRelease }: {
2
+ nextRelease: any;
3
+ }): Promise<void>;