@oclif/plugin-version 1.0.0 → 1.0.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,29 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.4](https://github.com/oclif/plugin-version/compare/v1.0.3...v1.0.4) (2022-01-06)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * bump @oclif/core ([8e841bd](https://github.com/oclif/plugin-version/commit/8e841bd1a77fa3a6d6f450dfa5c5f06f80ebd87f))
11
+
12
+ ### [1.0.3](https://github.com/oclif/plugin-version/compare/v1.0.2...v1.0.3) (2021-12-08)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * bump demps ([f2098c8](https://github.com/oclif/plugin-version/commit/f2098c819b7265eac440f2863de7d95377735ae1))
18
+
19
+ ### [1.0.2](https://github.com/oclif/plugin-version/compare/v1.0.1...v1.0.2) (2021-12-02)
20
+
21
+ ### [1.0.1](https://github.com/oclif/plugin-version/compare/v1.0.0...v1.0.1) (2021-12-01)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * remove cli-ux dependency ([7d0930e](https://github.com/oclif/plugin-version/commit/7d0930ee98353ba99b899c59b6b6ff56a0467d6b))
27
+
5
28
  ## [1.0.0](https://github.com/oclif/plugin-version/compare/v0.1.34...v1.0.0) (2021-12-01)
6
29
 
7
30
 
package/README.md CHANGED
@@ -4,6 +4,6 @@
4
4
  An oclif command that shows the CLI version
5
5
 
6
6
  [![Version](https://img.shields.io/npm/v/@oclif/plugin-version.svg)](https://npmjs.org/package/@oclif/plugin-version)
7
- [![CircleCI](https://circleci.com/gh/anycli/plugin-version/tree/main.svg?style=svg)](https://circleci.com/gh/anycli/plugin-version/tree/main)
7
+ [![CircleCI](https://circleci.com/gh/oclif/plugin-version/tree/main.svg?style=svg)](https://circleci.com/gh/oclif/plugin-version/tree/main)
8
8
  [![Downloads/week](https://img.shields.io/npm/dw/@oclif/plugin-version.svg)](https://npmjs.org/package/@oclif/plugin-version)
9
- [![License](https://img.shields.io/npm/l/@oclif/plugin-version.svg)](https://github.com/anycli/plugin-version/blob/main/package.json)
9
+ [![License](https://img.shields.io/npm/l/@oclif/plugin-update.svg)](https://github.com/oclif/plugin-version/blob/main/package.json)
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const core_1 = require("@oclif/core");
4
- const cli_ux_1 = require("cli-ux");
5
4
  class Version extends core_1.Command {
6
5
  async run() {
7
- cli_ux_1.cli.log(this.config.userAgent);
6
+ process.stdout.write(this.config.userAgent + '\n');
8
7
  }
9
8
  }
10
9
  exports.default = Version;
@@ -1 +1 @@
1
- {"version":"1.0.0","commands":{"version":{"id":"version","strict":true,"pluginName":"@oclif/plugin-version","pluginAlias":"@oclif/plugin-version","pluginType":"core","aliases":[],"flags":{},"args":[]}}}
1
+ {"version":"1.0.4","commands":{"version":{"id":"version","strict":true,"pluginName":"@oclif/plugin-version","pluginAlias":"@oclif/plugin-version","pluginType":"core","aliases":[],"flags":{},"args":[]}}}
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@oclif/plugin-version",
3
3
  "description": "A command that shows the CLI version",
4
- "version": "1.0.0",
4
+ "version": "1.0.4",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-version/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^1.0.4",
9
- "cli-ux": "^6"
8
+ "@oclif/core": "^1.1.1"
10
9
  },
11
10
  "devDependencies": {
12
11
  "@commitlint/config-conventional": "^12.1.4",
13
- "@oclif/plugin-help": "^5.1.4",
14
- "@oclif/test": "^2.0.1",
15
- "@types/chai": "^4.1.7",
12
+ "@oclif/plugin-help": "5.1.10",
13
+ "@oclif/test": "^2.0.3",
14
+ "@types/chai": "^4.3.0",
16
15
  "@types/mocha": "^8.0.0",
17
16
  "@types/node": "^14.0.26",
18
17
  "chai": "^4.2.0",
@@ -22,9 +21,9 @@
22
21
  "eslint-config-oclif-typescript": "^1.0.2",
23
22
  "husky": "6",
24
23
  "mocha": "^8.2.1",
25
- "oclif": "2.0.0-main.11",
24
+ "oclif": "2.1.0",
26
25
  "ts-node": "^10.4.0",
27
- "typescript": "4.4.3"
26
+ "typescript": "4.5.2"
28
27
  },
29
28
  "engines": {
30
29
  "node": ">=12.0.0"