feat(umd): add UMD bundle for CDN/<script> use (src/index.ts)#98
Open
paulpach wants to merge 2 commits into
Open
feat(umd): add UMD bundle for CDN/<script> use (src/index.ts)#98paulpach wants to merge 2 commits into
paulpach wants to merge 2 commits into
Conversation
Adds vite.config.browser.ts that produces dist/wiremd.umd.js from the existing src/index.ts entry point (no parallel browser.ts needed). - Entry: src/index.ts (parser + renderer core, no CLI) - Format: UMD only (global name: wiremd) - All npm deps inlined; no Node.js built-ins required by core - Source map included, minified with terser - Output: ~229 kB / ~53 kB gzipped New scripts: npm run build:umd — one-off UMD build npm run dev:umd — watch mode for local development Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Author
|
@akonan as you requested |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Follow-up to #75 and the suggestion in #95's closing comment.
Adds a UMD bundle targeted at
src/index.ts(the existing public entry point) so CDN /<script>consumers who don't run a bundler can use wiremd without any build tooling.What changed
vite.config.browser.tssrc/index.ts, all deps inlined, minified with terserpackage.jsonbuild:umdanddev:umdNo new subpath export (
wiremd/browser) is added — that's intentional. The UMD file lives indist/wiremd.umd.jsand is already covered by the existing"files": ["dist"]entry.Output
Usage (CDN)
Notes
src/cli/) —src/index.tsonly re-exports parser + renderer core