Skip to content

Commit 047cbba

Browse files
author
João Marcos Gris
authored
Release v0.1.1 (#8)
* Force colors on oclif-dev * Apply suggestions from code review * Release v0.1.1 * Automatic update on Toolbelt plugin documentation
1 parent 0c1133f commit 047cbba

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ 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
12+
913
## [0.1.0] - 2021-03-11
1014

1115
### Changed

README.md

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

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

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vtex/cli-plugin-add",
33
"description": "vtex plugin add",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"bugs": "https://github.com/vtex/cli-plugin-add/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)