Skip to content

Commit

Permalink
v2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukáš Horák committed Jan 13, 2022
1 parent 131a0ce commit 503e39b
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .gitmoji-changelogrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"project": {
"name": "@lokse/workspace",
"version": "2.1.3"
"version": "2.1.4"
}
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

<a name="2.1.4"></a>
## 2.1.4 (2022-01-13)

### Changed

- ⬆️ Upgrade eslint packages [[7c17834](https://github.com/AckeeCZ/lokse/commit/7c17834b78944091a446bcf80d0496a352966842)]
- ♻️ Fix linter errors/warnings after eslint upgrade [[131a0ce](https://github.com/AckeeCZ/lokse/commit/131a0cee46add54788b4836cb33b1ec42d06020f)]

### Miscellaneous

- 🤡 Fix mock of write sheet service in update command tests [[e9f82fc](https://github.com/AckeeCZ/lokse/commit/e9f82fc68eaa1f27b214745b6568a7bfd7c3a09c)]


<a name="2.1.3"></a>
## 2.1.3 (2022-01-13)

Expand Down
8 changes: 4 additions & 4 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "example",
"private": true,
"version": "2.1.3",
"version": "2.1.4",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@lokse/plugin-fallback": "^2.1.3",
"@lokse/plugin-prettier": "^2.1.3",
"lokse": "^2.1.3"
"@lokse/plugin-fallback": "^2.1.4",
"@lokse/plugin-prettier": "^2.1.4",
"lokse": "^2.1.4"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "2.1.3",
"version": "2.1.4",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install -g lokse
$ lokse COMMAND
running command...
$ lokse (-v|--version|version)
lokse/2.1.3 darwin-x64 node-v14.18.0
lokse/2.1.4 darwin-x64 node-v14.18.0
$ lokse --help [COMMAND]
USAGE
$ lokse COMMAND
Expand Down Expand Up @@ -197,7 +197,7 @@ EXAMPLE
$ lokse open -i 1HKjvejcuHIY73WvEkipD7_dmF9dFeNLji3nS2RXcIzk
```

_See code: [lib/commands/open.js](https://github.com/AckeeCZ/lokse/blob/v2.1.3/lib/commands/open.js)_
_See code: [lib/commands/open.js](https://github.com/AckeeCZ/lokse/blob/v2.1.4/lib/commands/open.js)_

## `lokse update`

Expand Down Expand Up @@ -225,5 +225,5 @@ EXAMPLES
$ lokse update -i 1HKjvejcuHIY73WvEkipD7_dmF9dFeNLji3nS2RXcIzk -d locales -l cz,en,fr -t key_web
```

_See code: [lib/commands/update.js](https://github.com/AckeeCZ/lokse/blob/v2.1.3/lib/commands/update.js)_
_See code: [lib/commands/update.js](https://github.com/AckeeCZ/lokse/blob/v2.1.4/lib/commands/update.js)_
<!-- commandsstop -->
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lokse",
"description": "Tool to efficient usage of translations stored in google spreadsheet",
"version": "2.1.3",
"version": "2.1.4",
"author": {
"name": "Lukas Horak",
"email": "[email protected]"
Expand All @@ -12,7 +12,7 @@
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2",
"@lokse/core": "^2.1.3",
"@lokse/core": "^2.1.4",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1.3.4",
Expand All @@ -36,8 +36,8 @@
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/node": "^10",
"@types/jest-when": "^2.7.2",
"@types/node": "^10",
"jest-when": "^3.0.1"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lokse/core",
"description": "Core of localization from spreadsheet solution lokse",
"version": "2.1.3",
"version": "2.1.4",
"author": {
"name": "Lukas Horak",
"email": "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-fallback/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@lokse/plugin-fallback",
"description": "Plugin for fallbacking missing translations to the default language translation",
"version": "2.1.3",
"version": "2.1.4",
"author": {
"name": "Lukáš Horák",
"email": "[email protected]"
},
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@lokse/core": "^2.1.3"
"@lokse/core": "^2.1.4"
},
"engines": {
"node": ">=8.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-non-breaking-spaces/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@lokse/plugin-non-breaking-spaces",
"description": "",
"version": "2.1.3",
"version": "2.1.4",
"author": {
"name": "Filip Kubík",
"email": "[email protected]"
},
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@lokse/core": "^2.1.3",
"@lokse/core": "^2.1.4",
"lodash": "^4.17.20"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-prettier/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@lokse/plugin-prettier",
"description": "Lokse plugin used to format output translations file using prettier",
"version": "2.1.3",
"version": "2.1.4",
"author": {
"name": "Lukas Horak",
"email": "[email protected]"
},
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@lokse/core": "^2.1.3",
"@lokse/core": "^2.1.4",
"prettier": "^2.1.2"
},
"engines": {
Expand Down

0 comments on commit 503e39b

Please sign in to comment.