diff --git a/CHANGELOG.md b/CHANGELOG.md index fc9c165..98f8f22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] - 2021-03-30 + +### Fixed +- Force colors on `oclif-dev manifest` ## [1.0.0] - 2021-03-12 ### Changed diff --git a/README.md b/README.md index e621671..84a7b5c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ $ npm install -g @vtex/cli-plugin-workspace $ oclif-example COMMAND running command... $ oclif-example (-v|--version|version) -@vtex/cli-plugin-workspace/1.0.0 linux-x64 node-v12.21.0 +@vtex/cli-plugin-workspace/1.0.1 linux-x64 node-v12.21.0 $ oclif-example --help [COMMAND] USAGE $ oclif-example COMMAND @@ -69,7 +69,7 @@ EXAMPLES vtex workspace delete workspaceName1 workspaceName2 ``` -_See code: [build/commands/workspace/delete.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/delete.ts)_ +_See code: [build/commands/workspace/delete.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/delete.ts)_ ## `oclif-example workspace:list` @@ -92,11 +92,11 @@ EXAMPLES vtex workspace ls ``` -_See code: [build/commands/workspace/list.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/list.ts)_ +_See code: [build/commands/workspace/list.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/list.ts)_ ## `oclif-example workspace:promote` -Promotes the current workspace to master. (Only works for production workspaces.) Run vtex promote --help to see how to deal with data conflicts. +Promotes the current workspace to master. (Only works for production workspaces.) Run vtex promote --help to see how to deal with data conflicts. ``` USAGE @@ -126,7 +126,7 @@ EXAMPLES vtex promote ``` -_See code: [build/commands/workspace/promote.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/promote.ts)_ +_See code: [build/commands/workspace/promote.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/promote.ts)_ ## `oclif-example workspace:reset [WORKSPACENAME]` @@ -151,7 +151,7 @@ EXAMPLES vtex workspace reset workspaceName ``` -_See code: [build/commands/workspace/reset.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/reset.ts)_ +_See code: [build/commands/workspace/reset.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/reset.ts)_ ## `oclif-example workspace:status [WORKSPACENAME]` @@ -173,7 +173,7 @@ EXAMPLE vtex workspace status ``` -_See code: [build/commands/workspace/status.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/status.ts)_ +_See code: [build/commands/workspace/status.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/status.ts)_ ## `oclif-example workspace:use WORKSPACE` @@ -201,5 +201,5 @@ EXAMPLES vtex use workspaceName ``` -_See code: [build/commands/workspace/use.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.0/build/commands/workspace/use.ts)_ +_See code: [build/commands/workspace/use.ts](https://github.com/vtex/cli-plugin-workspace/blob/v1.0.1/build/commands/workspace/use.ts)_ diff --git a/package.json b/package.json index c78d416..995b423 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@vtex/cli-plugin-workspace", "description": "vtex plugin workspace", - "version": "1.0.0", + "version": "1.0.1", "bugs": "https://github.com/vtex/cli-plugin-workspace/issues", "dependencies": { "@oclif/command": "^1", @@ -60,7 +60,7 @@ "scripts": { "build-clean": "rm -rf build", "build-incremental": "tsc --incremental", - "build": "yarn build-clean && yarn tsc && OCLIF_COMPILATION=true yarn oclif-dev manifest", + "build": "yarn build-clean && yarn tsc && OCLIF_COMPILATION=true yarn oclif-dev manifest --color=256", "ci:prettier-check": "prettier --check --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx,json}\"", "ci:test": "yarn test --ci", "format-lint": "yarn format && yarn lint", @@ -68,7 +68,7 @@ "lint": "eslint ./src --cache --ext .ts --config .eslintrc", "postpack": "rm -f oclif.manifest.json", "posttest": "eslint . --ext .ts --config .eslintrc", - "prepack": "rm -rf build && tsc -b && oclif-dev manifest && oclif-dev readme", + "prepack": "rm -rf build && tsc -b && oclif-dev manifest --color=256 && oclif-dev readme", "prepublishOnly": "bash ./scripts/publishLock.sh", "test": "jest --passWithNoTests", "version": "oclif-dev readme && git add README.md",