diff --git a/cli/README.md b/cli/README.md index 6b012fe9..da6cd8d2 100644 --- a/cli/README.md +++ b/cli/README.md @@ -20,7 +20,7 @@ $ npm install -g accent-cli $ accent COMMAND running command... $ accent (-v|--version|version) -accent-cli/0.14.1 darwin-arm64 node-v16.15.1 +accent-cli/0.14.2 darwin-arm64 node-v16.15.1 $ accent --help [COMMAND] USAGE $ accent COMMAND @@ -158,7 +158,7 @@ EXAMPLES $ accent export --order-by=key --version=build.myapp.com:0.12.345 ``` -_See code: [src/commands/export.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/export.ts)_ +_See code: [src/commands/export.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/export.ts)_ ## `accent format` @@ -176,7 +176,7 @@ EXAMPLE $ accent format ``` -_See code: [src/commands/format.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/format.ts)_ +_See code: [src/commands/format.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/format.ts)_ ## `accent help [COMMAND]` @@ -213,7 +213,7 @@ EXAMPLE $ accent jipt ``` -_See code: [src/commands/jipt.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/jipt.ts)_ +_See code: [src/commands/jipt.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/jipt.ts)_ ## `accent lint` @@ -230,7 +230,7 @@ EXAMPLE $ accent lint ``` -_See code: [src/commands/lint.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/lint.ts)_ +_See code: [src/commands/lint.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/lint.ts)_ ## `accent stats` @@ -247,7 +247,7 @@ EXAMPLE $ accent stats ``` -_See code: [src/commands/stats.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/stats.ts)_ +_See code: [src/commands/stats.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/stats.ts)_ ## `accent sync` @@ -279,7 +279,7 @@ EXAMPLES $ accent sync --add-translations --merge-type=smart --order-key=key --version=v0.23 ``` -_See code: [src/commands/sync.ts](https://github.com/mirego/accent/blob/v0.14.1/src/commands/sync.ts)_ +_See code: [src/commands/sync.ts](https://github.com/mirego/accent/blob/v0.14.2/src/commands/sync.ts)_ # GitHub Actions diff --git a/cli/package-lock.json b/cli/package-lock.json index 910a0a3b..931697ff 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "accent-cli", - "version": "0.14.1", + "version": "0.14.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/cli/package.json b/cli/package.json index a615b3e5..99bcfe8e 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "accent-cli", - "version": "0.14.1", + "version": "0.14.2", "author": "Simon Prévost", "description": "Accent CLI", "bin": { diff --git a/cli/tsconfig.json b/cli/tsconfig.json index dbb6471a..784b819a 100644 --- a/cli/tsconfig.json +++ b/cli/tsconfig.json @@ -15,7 +15,8 @@ "noImplicitReturns": true, "rootDirs": ["./src"], "strict": true, - "target": "es2020" + "target": "es2020", + "types": ["node"] }, "include": ["./src/**/*"], "exclude": ["node_modules/**/*"]