Skip to content

Commit b79f083

Browse files
committed
build(deps): bump @flex-development/vfile-tokenizer
- https://github.com/flex-development/vfile-tokenizer/tree/85f91f22fbf2dcb23c07fae8eaf5b552841d15d5 Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent 9f93864 commit b79f083

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+8587
-1687
lines changed

.codecov.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,7 @@ ignore:
109109

110110
profiling:
111111
critical_files_paths:
112-
- src/constructs/delimiter.mts
113-
- src/constructs/flag-long.mts
114-
- src/constructs/flag-short.mts
115-
- src/constructs/operand.mts
112+
- src/constructs/*.mts
116113
- src/lib/argument.mts
117114
- src/lib/command.mts
118115
- src/lib/option.mts

__fixtures__/commands/average.mts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @module fixtures/commands/average
44
*/
55

6-
import process from '#fixtures/process'
76
import sfmt from '#tests/utils/sfmt'
87
import type { CommandInfo } from '@flex-development/kronk'
98

@@ -14,6 +13,5 @@ import type { CommandInfo } from '@flex-development/kronk'
1413
*/
1514
export default {
1615
arguments: sfmt.optional({ id: 'num', variadic: true }),
17-
name: 'average',
18-
process
16+
name: 'average'
1917
} as CommandInfo

__fixtures__/commands/clamp.mts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @module fixtures/commands/clamp
44
*/
55

6-
import process from '#fixtures/process'
76
import sfmt from '#tests/utils/sfmt'
87
import type { CommandInfo } from '@flex-development/kronk'
98

@@ -39,8 +38,7 @@ export default {
3938
flags: '-m | --min <n>',
4039
parser: int
4140
}
42-
],
43-
process
41+
]
4442
} as CommandInfo
4543

4644
/**

__fixtures__/commands/dateformat.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55

66
import chars from '#enums/chars'
7-
import process from '#fixtures/process'
87
import sfmt from '#tests/utils/sfmt'
98
import type { CommandInfo } from '@flex-development/kronk'
109
import { masks } from 'dateformat'
@@ -43,7 +42,6 @@ export default {
4342
flags: '-u | --utc'
4443
}
4544
],
46-
process,
4745
subcommands: {
4846
aliases: 'tz',
4947
arguments: {

__fixtures__/commands/mlly.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @module fixtures/commands/mlly
44
*/
55

6-
import process from '#fixtures/process'
76
import sfmt from '#tests/utils/sfmt'
87
import type { CommandInfo } from '@flex-development/kronk'
98
import * as mlly from '@flex-development/mlly'
@@ -33,7 +32,6 @@ export default {
3332
parser: url
3433
}
3534
],
36-
process,
3735
subcommands: [
3836
{
3937
arguments: [

__fixtures__/commands/smallest-num.mts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @module fixtures/commands/smallestNum
44
*/
55

6-
import process from '#fixtures/process'
76
import sfmt from '#tests/utils/sfmt'
87
import type { CommandInfo } from '@flex-development/kronk'
98

@@ -19,8 +18,7 @@ export default {
1918
syntax: sfmt.required({ id: 'num', variadic: true })
2019
},
2120
description: 'find the smallest number',
22-
name: 'smallest-num',
23-
process
21+
name: 'smallest-num'
2422
} as CommandInfo
2523

2624
/**

__fixtures__/commands/string-util.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* @module fixtures/commands/string-util
44
*/
55

6-
import process from '#fixtures/process'
76
import sfmt from '#tests/utils/sfmt'
87
import type { CommandInfo } from '@flex-development/kronk'
98

@@ -20,7 +19,6 @@ export default {
2019
description: 'separator character',
2120
flags: '-s, --separator <char>'
2221
},
23-
process,
2422
subcommands: [
2523
{
2624
arguments: [

__fixtures__/commands/tribonacci.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import chars from '#enums/chars'
77
import digits from '#fixtures/digits'
8-
import process from '#fixtures/process'
98
import sfmt from '#tests/utils/sfmt'
109
import type { CommandInfo } from '@flex-development/kronk'
1110

@@ -16,7 +15,6 @@ import type { CommandInfo } from '@flex-development/kronk'
1615
*/
1716
export default {
1817
name: 'tribonacci',
19-
process,
2018
subcommands: {
2119
arguments: [
2220
{

__tests__/utils/find-command.mts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ import type { Command, CommandName, List } from '@flex-development/kronk'
88
/**
99
* Find a command with a name or alias matching `x`.
1010
*
11-
* @see {@linkcode CommandName}
12-
* @see {@linkcode Command}
13-
* @see {@linkcode List}
14-
*
1511
* @this {void}
1612
*
1713
* @param {Command} command

__tests__/utils/sfmt.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default {
3131
* Required argument syntax string
3232
*/
3333
required(this: void, options?: Options | null | undefined): ArgumentSyntax {
34-
return `${chars.lt}${id(options)}${chars.gt}`
34+
return `${chars.leftAngleBracket}${id(options)}${chars.rightAngleBracket}`
3535
}
3636
}
3737

0 commit comments

Comments
 (0)