@squiz/dxp-cli-next 1.3.0 → 1.4.0-develop.2

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.
Files changed (3) hide show
  1. package/README.md +2 -4
  2. package/lib/dxp.js +3 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,13 +1,11 @@
1
1
  # DXP
2
2
 
3
- ## Not a tool yet, install wont work
4
-
5
- > DXP command line tool
3
+ > The next iteration of the DXP command line tool
6
4
 
7
5
  ## Install
8
6
 
9
7
  ```bash
10
- npm install @squiz-dxp
8
+ npm i -g @squiz/dxp-cli-next
11
9
  ```
12
10
 
13
11
  ## Usage
package/lib/dxp.js CHANGED
@@ -6,7 +6,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const commander_1 = __importDefault(require("commander"));
7
7
  const update_notifier_1 = __importDefault(require("update-notifier"));
8
8
  const pkg = require('../package.json');
9
- (0, update_notifier_1.default)({ pkg, updateCheckInterval: 1 }).notify();
9
+ (0, update_notifier_1.default)({ pkg, updateCheckInterval: 1 }).notify({
10
+ isGlobal: true,
11
+ });
10
12
  const auth_1 = __importDefault(require("./auth"));
11
13
  const td_1 = __importDefault(require("./td"));
12
14
  const program = new commander_1.default.Command();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squiz/dxp-cli-next",
3
- "version": "1.3.0",
3
+ "version": "1.4.0-develop.2",
4
4
  "repository": {
5
5
  "url": "https://gitlab.squiz.net/developer-experience/dxp-cli-next"
6
6
  },