Skip to content

Commit 5f8dc34

Browse files
author
João Marcos Gris
authored
Release v0.1.1 (#4)
* Force colors on oclif-dev * Release v0.1.1 Update package.json Update package.json Automatic update on Toolbelt plugin documentation
1 parent cb8721e commit 5f8dc34

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
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-12
1013

1114
### Changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $ npm install -g @vtex/cli-plugin-deps
2929
$ oclif-example COMMAND
3030
running command...
3131
$ oclif-example (-v|--version|version)
32-
@vtex/cli-plugin-deps/0.1.0 linux-x64 node-v12.21.0
32+
@vtex/cli-plugin-deps/0.1.1 linux-x64 node-v12.21.0
3333
$ oclif-example --help [COMMAND]
3434
USAGE
3535
$ oclif-example COMMAND
@@ -63,7 +63,7 @@ EXAMPLE
6363
vtex deps diff workspace1 workspace2
6464
```
6565

66-
_See code: [build/commands/deps/diff.ts](https://github.com/vtex/cli-plugin-deps/blob/v0.1.0/build/commands/deps/diff.ts)_
66+
_See code: [build/commands/deps/diff.ts](https://github.com/vtex/cli-plugin-deps/blob/v0.1.1/build/commands/deps/diff.ts)_
6767

6868
## `oclif-example deps:list`
6969

@@ -88,7 +88,7 @@ EXAMPLES
8888
vtex deps ls
8989
```
9090

91-
_See code: [build/commands/deps/list.ts](https://github.com/vtex/cli-plugin-deps/blob/v0.1.0/build/commands/deps/list.ts)_
91+
_See code: [build/commands/deps/list.ts](https://github.com/vtex/cli-plugin-deps/blob/v0.1.1/build/commands/deps/list.ts)_
9292

9393
## `oclif-example deps:update [APPID] [ITHAPPID]`
9494

@@ -112,5 +112,5 @@ EXAMPLES
112112
vtex deps update vtex.service-example@0.0.1
113113
```
114114

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

package.json

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

0 commit comments

Comments
 (0)