Skip to content

Commit

Permalink
Release v1.0.1 (#12)
Browse files Browse the repository at this point in the history
* For colors on `oclif-dev manifest`

* Update package.json

* Automatic update on Toolbelt plugin documentation

* Release v1.0.1

* Automatic update on Toolbelt plugin documentation
  • Loading branch information
João Marcos Gris authored Mar 30, 2021
1 parent 6103a9b commit 97354bb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`

Expand All @@ -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 [38;5;205mvtex promote --help to see how to deal with data conflicts.

```
USAGE
Expand Down Expand Up @@ -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]`

Expand All @@ -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]`

Expand All @@ -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`

Expand Down Expand Up @@ -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)_
<!-- commandsstop -->
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -60,15 +60,15 @@
"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",
"format": "prettier --config ./.prettierrc --write \"**/*.{ts,js,json}\"",
"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",
Expand Down

0 comments on commit 97354bb

Please sign in to comment.