Skip to content

Commit 276a223

Browse files
author
João Marcos Gris
authored
Release v0.1.1 (#7)
* Force colors on oclif-dev Apply suggestions from code review * Release v0.1.1 * Automatic update on Toolbelt plugin documentation
1 parent 89440a4 commit 276a223

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.1] - 2021-03-30
10+
### Fixed
11+
-[oclif-dev manifest] Add `--color=256` to force using collor on file
912
## [0.1.0] - 2021-03-11
1013

1114
### Changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $ npm install -g @vtex/cli-plugin-logs
2929
$ vtex COMMAND
3030
running command...
3131
$ vtex (-v|--version|version)
32-
@vtex/cli-plugin-logs/0.1.0 linux-x64 node-v12.21.0
32+
@vtex/cli-plugin-logs/0.1.1 linux-x64 node-v12.21.0
3333
$ vtex --help [COMMAND]
3434
USAGE
3535
$ vtex COMMAND
@@ -65,5 +65,5 @@ EXAMPLES
6565
vtex logs appName --past
6666
```
6767

68-
_See code: [build/commands/logs.ts](https://github.com/vtex/cli-plugin-logs/blob/v0.1.0/build/commands/logs.ts)_
68+
_See code: [build/commands/logs.ts](https://github.com/vtex/cli-plugin-logs/blob/v0.1.1/build/commands/logs.ts)_
6969
<!-- commandsstop -->

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vtex/cli-plugin-logs",
33
"description": "vtex plugin logs",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"bugs": "https://github.com/vtex/cli-plugin-logs/issues",
66
"dependencies": {
77
"@oclif/command": "^1",
@@ -53,15 +53,15 @@
5353
"scripts": {
5454
"build-clean": "rm -rf build",
5555
"build-incremental": "tsc --incremental",
56-
"build": "yarn build-clean && yarn tsc && OCLIF_COMPILATION=true yarn oclif-dev manifest",
56+
"build": "yarn build-clean && yarn tsc && OCLIF_COMPILATION=true yarn oclif-dev manifest --color=256",
5757
"ci:prettier-check": "prettier --check --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx,json}\"",
5858
"ci:test": "yarn test --ci",
5959
"format-lint": "yarn format && yarn lint",
6060
"format": "prettier --config ./.prettierrc --write \"**/*.{ts,js,json}\"",
6161
"lint": "eslint ./src --cache --ext .ts --config .eslintrc",
6262
"postpack": "rm -f oclif.manifest.json",
6363
"posttest": "eslint . --ext .ts --config .eslintrc",
64-
"prepack": "rm -rf build && tsc -b && oclif-dev manifest && oclif-dev readme",
64+
"prepack": "rm -rf build && tsc -b && oclif-dev manifest --color=256 && oclif-dev readme",
6565
"prepublishOnly": "bash ./scripts/publishLock.sh",
6666
"test": "jest --passWithNoTests",
6767
"version": "oclif-dev readme && git add README.md",

0 commit comments

Comments
 (0)