Commit Graph

4419 Commits

Author SHA1 Message Date
Tim Reichen
23cefc3068
refactor(yaml): remove type mod file (#5795) 2024-08-24 13:52:09 +09:00
Tim Reichen
95d7b4385b
refactor(yaml): inline skipSeparationSpace() (#5792) 2024-08-23 06:22:02 +00:00
Asher Gomez
2f95d2b046
docs(cache): tweak LruCache docs (#5790) 2024-08-23 14:12:01 +10:00
Ian Bull
77547f1e7d
refactor(semver): align additional error messages (#5785) 2024-08-23 12:39:56 +09:00
Ian Bull
479b258f99
refactor(encoding): align additional error messages (#5767)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-23 12:32:15 +09:00
Ian Bull
f1d3885994
refactor(path,streams): align additional error messages (#5718) 2024-08-23 12:31:01 +09:00
Tim Reichen
a81742a781
refactor(yaml): inline readLineBreak() (#5783) 2024-08-23 07:55:40 +10:00
Tim Reichen
f14f74b035
refactor(yaml): inline storeMappingPair() (#5779) 2024-08-23 07:47:49 +10:00
Tim Reichen
076acf5665
refactor(yaml): remove storeMappingPair() result null type (#5781)
initial commit

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-08-22 21:18:58 +00:00
Tim Reichen
60402c697f
test(yaml): add condenseFlow() test (#5780)
initial commit
2024-08-23 07:09:16 +10:00
Tim Reichen
bb0db58caa
refactor(yaml): inline mergeMappings() (#5777) 2024-08-22 23:01:34 +10:00
Tim Reichen
1d2d33ad1a
refactor(yaml): use Set in inspectNode() (#5778) 2024-08-22 22:11:25 +10:00
Asher Gomez
68eb6c3d0e
fix(http/unstable): match request method (#5772) 2024-08-22 21:05:39 +09:00
Asher Gomez
74a92c4acd
docs: cleanup README (#5770) 2024-08-22 20:44:24 +09:00
Tim Reichen
5e5827d59e
refactor(yaml): inline readBlockSequence() (#5776)
initial commit
2024-08-22 20:19:41 +10:00
Tim Reichen
310b1a35b2
refactor(yaml): inline captureSegment() (#5775) 2024-08-22 19:55:48 +10:00
Tim Reichen
0f84a54967
refactor(yaml): inline tagDirectiveHandler() (#5771)
initial commit
2024-08-22 18:29:51 +10:00
Tim Reichen
9bcab52637
refactor(yaml): cleanup stringifyFlowSequence() (#5744)
initial commit
2024-08-22 17:48:13 +10:00
Tim Reichen
9be9eaea4b
fix(front-matter): remove os specific newline (#5752)
initial commit
2024-08-22 17:43:11 +10:00
Asher Gomez
dea7d7701a
docs(archive,assert,cache,cli,encoding,html,http,net,streams,text): remove unstable Markdown alert (#5672)
* docs(archive,cli,html,http,net,streams,text): remove unstable Markdown alert

* update

* fix

* update

* fmt

* fix
2024-08-22 02:55:17 -04:00
Tim Reichen
afb9a4f336
refactor(log): make BaseHandler abstract (#5737)
initial commit
2024-08-22 16:46:53 +10:00
Ian Bull
833a24f088
refactor(async): align the error messages to the style guide (#5758)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-22 15:02:58 +09:00
Ian Bull
46b3961833
docs(cli): align additional error messages (#5768) 2024-08-22 15:00:51 +09:00
Asher Gomez
b289deecbe
docs(text): fix slugify() summary (#5722)
* docs(text): fix `slugify()` summary

* tweak

* fix
2024-08-22 14:49:56 +09:00
Ian Bull
7fb685efff
refactor(internal): align additional error messages (#5766) 2024-08-22 14:35:34 +09:00
Ian Bull
8f3dd6ef0b
chore: update the style guide, specifically disallow periods in error messages (#5753) 2024-08-22 14:30:16 +09:00
Ian Bull
f0031966c9
chore: update the style guide, error messages may describe desired state (#5757) 2024-08-22 14:03:42 +09:00
Doctor
0f7a71f96b
feat(encoding/unstable): adds streaming versions for hex, base32, base32hex, base64 and base64url (#4915)
* feat(encoding): adds streaming versions of several encoding methods.

Adds streaming methods for:
- Hex
- Base32
- Base64
- Base64Url

* move(encoding): streaming versions to their own modules.

* fix(encoding): jsdoc examples

* fix(encoding): error when chunk's are smaller than the minimum size.

* add(encoding): Base32Hex Encoder/Decoder Streams

* fix(encoding): mod.ts not exporting ./base32hex_stream.ts

* hex stream

* RandomSliceStream

* polish

* base32

* base64hex

* base64

* base64url

* tweak

* fix

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-08-22 15:02:36 +10:00
Asher Gomez
b0708f49aa
chore: fix lint:docs task concurrency (#5756) 2024-08-22 13:10:17 +09:00
Tim Reichen
ba1bc9164a
refactor(yaml): change styleMap type to Map (#5760)
* initial commit

* update
2024-08-22 12:46:32 +10:00
Tim Reichen
55a6b77e65
refactor(yaml): inline yamlDirectiveHandler() (#5763)
initial commit
2024-08-22 12:44:18 +10:00
Tim Reichen
349fb8f8f1
refactor(yaml): remove ResultType (#5765)
initial commit
2024-08-22 12:43:07 +10:00
Tim Reichen
0332f0ada8
refactor(yaml): remove ArrayObject (#5761) 2024-08-22 07:58:27 +10:00
Tim Reichen
1894abdb69
refactor(yaml): add BOM constant (#5764) 2024-08-22 07:56:05 +10:00
lionel-rowe
2a0f5118c2
feat(cache/unstable): TtlCache (#5662)
* feat(cache/unstable): add TTL (time-to-live) cache

* Implement code review changes

* Simplify timeout logic

* Update cache/ttl_cache.ts

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>

* Properly handle cleanup of timeouts

* chore: add experimental note

* Add test for [Symbol.toStringTag]

* tweak

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-21 10:45:16 +00:00
Ian Bull
ae78abb085
refactor(toml,msgpack,crypto,data-structures): align the error messages to the style guide (#5705)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-21 16:15:14 +09:00
Tim Reichen
c05c91416e
refactor(yaml): move options to options object (#5740) 2024-08-21 16:00:08 +09:00
Michael Ekstrand
06d83831fb
feat(front-matter/unstable): add pass-through ParseOptions argument for YAML parser (#5748)
* add options to front_matter/yaml/extract

* fix lint error on type import

* add unstable overload, add example

---------

Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-21 16:41:53 +10:00
Yoshiya Hinosawa
ce40f0bae1
fix(dotenv): show warning when there is invalid key in .env file (#5745) 2024-08-21 14:56:34 +09:00
Yoshiya Hinosawa
210402c6d2
chore: check import map versions more strictly (#5746) 2024-08-21 14:43:21 +09:00
Ian Bull
70011e9155
refactor(archive,cache,datetime,fmt,front-matter): align error messages to the style guide (#5706)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-21 14:42:02 +09:00
Yoshiya Hinosawa
8e96c1992f
feat(path/unstable): support URL input in dirname() (#5747) 2024-08-21 14:28:58 +09:00
Ian Bull
5092c7e9f1
refactor(webgpu): align additional error messages (#5754)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2024-08-21 14:04:27 +09:00
Tim Reichen
644e03b817
perf(cli,http,ini,internal,media-types): replace trim() comparisons with regexps (#5751) 2024-08-21 13:50:18 +09:00
Tim Reichen
b8d31866a0
refactor(yaml): replace chooseScalarType() callback with implicitTypes argument (#5750)
initial commit
2024-08-21 10:14:19 +10:00
Tim Reichen
99200dcd90
refactor(yaml): remove variable underscore (#5741) 2024-08-20 18:32:45 +10:00
Tim Reichen
6c70fa9cb6
refactor(yaml): rename DumperState methods (#5738)
* initial commit

* update
2024-08-20 07:42:39 +00:00
Asher Gomez
d6fde648e2
docs(archive): complete documentation (#5636)
* docs(archive): complete documentation

* work

* work

* work

* work

* fixes
2024-08-20 17:13:54 +10:00
Tim Reichen
701b6df3df
refactor(yaml): remove dump property (#5683)
* initial commit

* update
2024-08-20 17:13:19 +10:00
Tim Reichen
9ed80af65f
refactor(yaml): remove tag property (#5689)
* initial commit

* update

* tweak

* Update _dumper_state.ts

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-08-20 06:09:58 +00:00