Skip to content

Commit 019dcf6

Browse files
Sanjar MirakhmedovSanjar Mirakhmedov
authored andcommitted
v0.9.0
1 parent b67bab3 commit 019dcf6

File tree

8 files changed

+44
-28
lines changed

8 files changed

+44
-28
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.8.0",
2+
"version": "0.9.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/babel-preset",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Shared Babel preset",
55
"keywords": [
66
"babel"

packages/eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/eslint-plugin",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Shared ESLint plugin",
55
"keywords": [
66
"eslint"

packages/js-tools/README.md

Lines changed: 37 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ npm install -g @superdispatch/js-tools
1717
$ js-tools COMMAND
1818
running command...
1919
$ js-tools (-v|--version|version)
20-
@superdispatch/js-tools/0.8.0 darwin-x64 node-v20.18.2
20+
@superdispatch/js-tools/0.9.0 darwin-arm64 node-v20.0.0
2121
$ js-tools --help [COMMAND]
2222
USAGE
2323
$ js-tools COMMAND
@@ -50,18 +50,22 @@ USAGE
5050
$ js-tools lint
5151
5252
OPTIONS
53-
--cache Only check changed files
54-
--fix Run auto-fixes
55-
--help show CLI help
56-
--quiet Do not emit warnings
53+
--cache Only check changed files
54+
--fix Run auto-fixes
55+
--help show CLI help
56+
57+
--maxWarnings=maxWarnings [default: -1] Maximum number of warnings after which the command will exit with a non-zero
58+
exit code
59+
60+
--quiet Do not emit warnings
5761
5862
EXAMPLES
5963
$ js-tools lint --fix
6064
$ js-tools lint --quiet
6165
$ js-tools lint foo.js bar.js
6266
```
6367

64-
_See code: [dist/commands/lint/index.js](https://github.com/superdispatch/js-tools/blob/v0.8.0/dist/commands/lint/index.js)_
68+
_See code: [dist/commands/lint/index.js](https://github.com/superdispatch/js-tools/blob/v0.9.0/dist/commands/lint/index.js)_
6569

6670
## `js-tools lint:eslint`
6771

@@ -72,18 +76,22 @@ USAGE
7276
$ js-tools lint:eslint
7377
7478
OPTIONS
75-
--cache Only check changed files
76-
--fix Run auto-fixes
77-
--help show CLI help
78-
--quiet Do not emit warnings
79+
--cache Only check changed files
80+
--fix Run auto-fixes
81+
--help show CLI help
82+
83+
--maxWarnings=maxWarnings [default: -1] Maximum number of warnings after which the command will exit with a non-zero
84+
exit code
85+
86+
--quiet Do not emit warnings
7987
8088
EXAMPLES
8189
$ js-tools lint --fix
8290
$ js-tools lint --quiet
8391
$ js-tools lint foo.js bar.js
8492
```
8593

86-
_See code: [dist/commands/lint/eslint.js](https://github.com/superdispatch/js-tools/blob/v0.8.0/dist/commands/lint/eslint.js)_
94+
_See code: [dist/commands/lint/eslint.js](https://github.com/superdispatch/js-tools/blob/v0.9.0/dist/commands/lint/eslint.js)_
8795

8896
## `js-tools lint:prettier`
8997

@@ -94,18 +102,22 @@ USAGE
94102
$ js-tools lint:prettier
95103
96104
OPTIONS
97-
--cache Only check changed files
98-
--fix Run auto-fixes
99-
--help show CLI help
100-
--quiet Do not emit warnings
105+
--cache Only check changed files
106+
--fix Run auto-fixes
107+
--help show CLI help
108+
109+
--maxWarnings=maxWarnings [default: -1] Maximum number of warnings after which the command will exit with a non-zero
110+
exit code
111+
112+
--quiet Do not emit warnings
101113
102114
EXAMPLES
103115
$ js-tools lint --fix
104116
$ js-tools lint --quiet
105117
$ js-tools lint foo.js bar.js
106118
```
107119

108-
_See code: [dist/commands/lint/prettier.js](https://github.com/superdispatch/js-tools/blob/v0.8.0/dist/commands/lint/prettier.js)_
120+
_See code: [dist/commands/lint/prettier.js](https://github.com/superdispatch/js-tools/blob/v0.9.0/dist/commands/lint/prettier.js)_
109121

110122
## `js-tools lint:yarn-deduplicate`
111123

@@ -116,17 +128,21 @@ USAGE
116128
$ js-tools lint:yarn-deduplicate
117129
118130
OPTIONS
119-
--cache Only check changed files
120-
--fix Run auto-fixes
121-
--help show CLI help
122-
--quiet Do not emit warnings
131+
--cache Only check changed files
132+
--fix Run auto-fixes
133+
--help show CLI help
134+
135+
--maxWarnings=maxWarnings [default: -1] Maximum number of warnings after which the command will exit with a non-zero
136+
exit code
137+
138+
--quiet Do not emit warnings
123139
124140
EXAMPLES
125141
$ js-tools lint --fix
126142
$ js-tools lint --quiet
127143
$ js-tools lint foo.js bar.js
128144
```
129145

130-
_See code: [dist/commands/lint/yarn-deduplicate.js](https://github.com/superdispatch/js-tools/blob/v0.8.0/dist/commands/lint/yarn-deduplicate.js)_
146+
_See code: [dist/commands/lint/yarn-deduplicate.js](https://github.com/superdispatch/js-tools/blob/v0.9.0/dist/commands/lint/yarn-deduplicate.js)_
131147

132148
<!-- commandsstop -->

packages/js-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/js-tools",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "CLI tools for JavaScript",
55
"keywords": [
66
"eslint",

packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/prettier-config",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Shared config for Prettier.",
55
"keywords": [
66
"prettier"

packages/renovate-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/renovate-config",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Shared config for Renovate.",
55
"keywords": [
66
"typescript"

packages/tsconfig/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superdispatch/tsconfig",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Shared config for TypeScript.",
55
"keywords": [
66
"typescript"

0 commit comments

Comments
 (0)