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

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.
@@ -15,7 +15,7 @@ describe('dxp', () => {
15
15
  'auth Authenticate into the DXP CLI',
16
16
  'cmp Component Service Commands',
17
17
  'job-runner Job Runner Service Commands',
18
- 'datastore Datastore Commands',
18
+ // 'datastore Datastore Commands',
19
19
  ]);
20
20
  });
21
21
  });
package/lib/dxp.js CHANGED
@@ -14,7 +14,6 @@ validateNodeVersion();
14
14
  const auth_1 = __importDefault(require("./auth"));
15
15
  const cmp_1 = __importDefault(require("./cmp"));
16
16
  const job_runner_1 = __importDefault(require("./job-runner"));
17
- const datastore_1 = __importDefault(require("./datastore"));
18
17
  const program = new commander_1.default.Command();
19
18
  const packageJson = require('../package.json');
20
19
  const version = packageJson.version;
@@ -25,7 +24,7 @@ program
25
24
  .addCommand(auth_1.default)
26
25
  .addCommand(cmp_1.default)
27
26
  .addCommand(job_runner_1.default)
28
- .addCommand(datastore_1.default)
27
+ // .addCommand(datastoreCommand)
29
28
  .action(() => {
30
29
  program.help();
31
30
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squiz/dxp-cli-next",
3
- "version": "5.10.0-develop.1",
3
+ "version": "5.10.0",
4
4
  "repository": {
5
5
  "url": "https://gitlab.squiz.net/dxp/dxp-cli-next"
6
6
  },