Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
[email protected]
Minor Changes
#533
b221fc7
Thanks @kamiazya! - Migrate to ESM-only distributionThis release removes CommonJS (CJS) and UMD build outputs, distributing only ES modules (ESM). All build artifacts are now placed directly in the
dist/
directory for a simpler and cleaner structure.Breaking Changes
.cjs
files. Node.js projects must use ES modules.dist/web-csv-toolbox.umd.js
) has been removed. For CDN usage, use ESM via<script type="module">
.dist/es/
,dist/cjs/
, anddist/types/
todist/
root directory.build:browser
command: The separate UMD build step is no longer needed.Migration Guide
For Node.js users:
"type": "module"
inpackage.json
, or use.mjs
file extensionsrequire()
calls to ESMimport
statementsFor CDN users:
Before:
After:
For bundler users:
No changes required - modern bundlers handle ESM correctly.
Benefits
#476
ae54611
Thanks @kamiazya! - Drop support Node.js v18 and Add test on Node.js v24Patch Changes
#535
009c762
Thanks @egoitz-ehu! - Close issue Bug: Typo in escapeField.ts comment 'maatching' should be 'matching' #524#532
fc4fc57
Thanks @sshekhar563! - fix(docs): correct typo 'Lexter' → 'Lexer' in Lexer.ts JSDoc#529
76df785
Thanks @kamiazya! - Migrate npm package publishing to OIDC trusted publishing for enhanced security#531
a273b9d
Thanks @VaishnaviOnPC! - fix: correct typo in escapeField.ts comment ('ASSTPTED' → 'ASSERTED')