Skip to content

Commit

Permalink
fix(compress-stringify): README badge escape for @itk-wasm org
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Mar 2, 2023
1 parent cc661eb commit 25c3727
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/compress-stringify/typescript/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @itk-wasm/compress-stringify

[![npm version](https://badge.fury.io/js/@itk-wasm/compress-stringify.svg)](https://www.npmjs.com/package/@itk-wasm/compress-stringify)
[![npm version](https://badge.fury.io/js/@itk-wasm%2Fcompress-stringify.svg)](https://www.npmjs.com/package/@itk-wasm/compress-stringify)

Zstandard compression and decompression and base64 encoding and decoding in WebAssembly.

Expand Down
2 changes: 1 addition & 1 deletion packages/compress-stringify/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itk-wasm/compress-stringify",
"version": "0.4.0",
"version": "0.4.1",
"description": "Zstandard compression and decompression and base64 encoding and decoding in WebAssembly.",
"type": "module",
"module": "./dist/bundles/@itk-wasm/compress-stringify.js",
Expand Down
2 changes: 1 addition & 1 deletion src/bindgen/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ function bindgen (outputDir, buildDir, filteredWasmBinaries, options) {
let readme = ''
const packageName = options.packageName
readme += `# ${packageName}\n`
readme += `\n[![npm version](https://badge.fury.io/js/${packageName}.svg)](https://www.npmjs.com/package/${packageName})\n`
readme += `\n[![npm version](https://badge.fury.io/js/${packageName.replace('/', '%2F')}.svg)](https://www.npmjs.com/package/${packageName})\n`
readme += `\n${options.packageDescription}\n`
readme += `\n## Installation\n
\`\`\`sh
Expand Down

0 comments on commit 25c3727

Please sign in to comment.