Skip to content

Commit e89b15f

Browse files
committed
build(deps): @flex-development/fsm-tokenizer@1.0.0-alpha.1
- formerly @flex-development/vfile-tokenizer Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent b79f083 commit e89b15f

28 files changed

+66
-66
lines changed

__tests__/utils/snapshot-events.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @module tests/utils/snapshotEvents
44
*/
55

6+
import type { Event, EventType, Token } from '@flex-development/fsm-tokenizer'
67
import { ksort, shake } from '@flex-development/tutils'
7-
import type { Event, EventType, Token } from '@flex-development/vfile-tokenizer'
88

99
/**
1010
* Get a snapshot-compliant list of events.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@
122122
"typecheck:ui": "yarn test:ui --typecheck --mode=typecheck"
123123
},
124124
"dependencies": {
125+
"@flex-development/fsm-tokenizer": "1.0.0-alpha.1",
125126
"@flex-development/log": "flex-development/log#commit=194e98812fbbffceb6e2158b849706c597175207",
126127
"@flex-development/tutils": "6.0.0-alpha.25",
127-
"@flex-development/vfile-tokenizer": "flex-development/vfile-tokenizer#commit=85f91f22fbf2dcb23c07fae8eaf5b552841d15d5",
128128
"micromark-util-character": "2.1.1",
129129
"plur": "5.1.0"
130130
},

src/constructs/__tests__/delimiter.integration.spec.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import testSubject from '#constructs/delimiter'
77
import chars from '#enums/chars'
88
import tt from '#enums/tt'
99
import snapshot from '#tests/utils/snapshot-events'
10-
import pathe from '@flex-development/pathe'
1110
import {
1211
codes,
1312
createTokenizer,
@@ -16,7 +15,8 @@ import {
1615
type FinalizeContext,
1716
type List,
1817
type TokenizeContext
19-
} from '@flex-development/vfile-tokenizer'
18+
} from '@flex-development/fsm-tokenizer'
19+
import pathe from '@flex-development/pathe'
2020

2121
describe('integration:constructs/delimiter', () => {
2222
let context: TokenizeContext

src/constructs/__tests__/initial-argument.integration.spec.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import tt from '#enums/tt'
99
import kArgument from '#internal/k-argument'
1010
import sfmt from '#tests/utils/sfmt'
1111
import snapshot from '#tests/utils/snapshot-events'
12-
import type { ArgumentSyntax } from '@flex-development/kronk'
13-
import pathe from '@flex-development/pathe'
1412
import {
1513
createTokenizer,
1614
tokenize,
1715
type FinalizeContext,
1816
type TokenizeContext
19-
} from '@flex-development/vfile-tokenizer'
17+
} from '@flex-development/fsm-tokenizer'
18+
import type { ArgumentSyntax } from '@flex-development/kronk'
19+
import pathe from '@flex-development/pathe'
2020

2121
describe('integration:constructs/initialArgument', () => {
2222
let context: TokenizeContext

src/constructs/__tests__/initial-command.integration.spec.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ import process from '#fixtures/process'
1616
import kCommand from '#internal/k-command'
1717
import Command from '#lib/command'
1818
import snapshot from '#tests/utils/snapshot-events'
19-
import type { CommandInfo } from '@flex-development/kronk'
20-
import pathe from '@flex-development/pathe'
2119
import {
2220
createTokenizer,
2321
tokenize,
2422
type List,
2523
type TokenizeContext
26-
} from '@flex-development/vfile-tokenizer'
24+
} from '@flex-development/fsm-tokenizer'
25+
import type { CommandInfo } from '@flex-development/kronk'
26+
import pathe from '@flex-development/pathe'
2727
import { ok } from 'devlop'
2828

2929
describe('integration:constructs/initialCommand', () => {

src/constructs/__tests__/initial-option.integration.spec.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ import kOption from '#internal/k-option'
1010
import toChunks from '#internal/to-chunks'
1111
import sfmt from '#tests/utils/sfmt'
1212
import snapshot from '#tests/utils/snapshot-events'
13-
import type { Flags } from '@flex-development/kronk'
14-
import pathe from '@flex-development/pathe'
1513
import {
1614
createTokenizer,
1715
tokenize,
1816
type FinalizeContext,
1917
type TokenizeContext
20-
} from '@flex-development/vfile-tokenizer'
18+
} from '@flex-development/fsm-tokenizer'
19+
import type { Flags } from '@flex-development/kronk'
20+
import pathe from '@flex-development/pathe'
2121

2222
describe('integration:constructs/initialOption', () => {
2323
let context: TokenizeContext

src/constructs/argument-syntax.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
type Event,
1919
type State,
2020
type TokenizeContext
21-
} from '@flex-development/vfile-tokenizer'
21+
} from '@flex-development/fsm-tokenizer'
2222
import { ok as assert } from 'devlop'
2323

2424
/**

src/constructs/delimiter.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
type Event,
1616
type State,
1717
type TokenizeContext
18-
} from '@flex-development/vfile-tokenizer'
18+
} from '@flex-development/fsm-tokenizer'
1919
import { ok as assert } from 'devlop'
2020

2121
/**

src/constructs/flag-long.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
type Effects,
1717
type State,
1818
type TokenizeContext
19-
} from '@flex-development/vfile-tokenizer'
19+
} from '@flex-development/fsm-tokenizer'
2020
import { ok as assert } from 'devlop'
2121
import { asciiAlphanumeric } from 'micromark-util-character'
2222

src/constructs/flag-short.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
type Effects,
1717
type State,
1818
type TokenizeContext
19-
} from '@flex-development/vfile-tokenizer'
19+
} from '@flex-development/fsm-tokenizer'
2020
import { ok as assert } from 'devlop'
2121
import { asciiAlphanumeric } from 'micromark-util-character'
2222

0 commit comments

Comments
 (0)