@squiz/dxp-cli-next 5.12.1-develop.1 → 5.12.1

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/lib/auth/index.js CHANGED
@@ -5,10 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const commander_1 = require("commander");
7
7
  const login_1 = __importDefault(require("./login/login"));
8
- const logout_1 = __importDefault(require("./logout/logout"));
9
8
  const authCommand = new commander_1.Command('auth');
10
9
  authCommand
11
10
  .description('Authenticate into the DXP-Next CLI')
12
- .addCommand((0, login_1.default)())
13
- .addCommand((0, logout_1.default)());
11
+ .addCommand((0, login_1.default)());
12
+ // Removed because it does not work
13
+ // getting fixed in PLATFORM-940
14
+ // .addCommand(createLogoutCommand());
14
15
  exports.default = authCommand;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squiz/dxp-cli-next",
3
- "version": "5.12.1-develop.1",
3
+ "version": "5.12.1",
4
4
  "repository": {
5
5
  "url": "https://gitlab.squiz.net/dxp/dxp-cli-next"
6
6
  },