Skip to content

Commit

Permalink
build(compress-stringify): bump typescript for itk-wasm 1.0.0-b.154
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Nov 8, 2023
1 parent 2302ec4 commit c222c18
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "2.0.1"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"itkwasm",
Expand All @@ -31,7 +32,7 @@ keywords = [

requires-python = ">=3.8"
dependencies = [
"itkwasm >= 1.0.b131",
"itkwasm >= 1.0.b145",
]

[project.urls]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "2.0.1"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "2.0.1"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"itkwasm",
Expand All @@ -33,7 +34,7 @@ keywords = [

requires-python = ">=3.8"
dependencies = [
"itkwasm >= 1.0.b131",
"itkwasm >= 1.0.b145",
"itkwasm-compress-stringify-wasi; sys_platform != \"emscripten\"",
"itkwasm-compress-stringify-emscripten; sys_platform == \"emscripten\"",
]
Expand Down
10 changes: 5 additions & 5 deletions 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": "1.0.0",
"version": "2.0.1",
"description": "Zstandard compression and decompression and base64 encoding and decoding in WebAssembly.",
"type": "module",
"module": "./dist/index.js",
Expand All @@ -25,9 +25,9 @@
"cypress:open": "npx cypress open",
"cypress:runChrome": "npx cypress run --browser chrome",
"cypress:runFirefox": "npx cypress run --browser firefox",
"build": "npm run build:tsc && npm run build:browser:webWorkers && npm run build:browser:workerEmbedded && npm run build:demo",
"build:browser:webWorkers": "shx mkdir -p dist/web-workers && shx cp node_modules/itk-wasm/dist/core/web-workers/bundles/* ./dist/web-workers/",
"build:browser:workerEmbedded": "esbuild --loader:.worker.js=dataurl --bundle --format=esm --outfile=./dist/compress-stringify-worker-embedded.js ./src/index-worker-embedded.ts",
"build": "npm run build:tsc && npm run build:browser:workerEmbedded && npm run build:browser:workerEmbeddedMin && npm run build:demo",
"build:browser:workerEmbedded": "esbuild --loader:.worker.js=dataurl --bundle --format=esm --outfile=./dist/bundle/index-worker-embedded.js ./src/index-worker-embedded.ts",
"build:browser:workerEmbeddedMin": "esbuild --minify --loader:.worker.js=dataurl --bundle --format=esm --outfile=./dist/bundle/index-worker-embedded.min.js ./src/index-worker-embedded.min.ts",
"build:tsc": "tsc --pretty",
"build:demo": "npm run copyShoelaceAssets && vite -c build/vite.config.js build"
},
Expand All @@ -39,7 +39,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"itk-wasm": "^1.0.0-b.152"
"itk-wasm": "^1.0.0-b.154"
},
"devDependencies": {
"@shoelace-style/shoelace": "^2.5.2",
Expand Down
18 changes: 9 additions & 9 deletions packages/compress-stringify/typescript/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Generated file. To retain edits, remove this comment.

// Generated file. To retain edits, remove this comment.

import { setPipelineWorkerUrl } from './index.js'
import pipelineWorker from '../node_modules/itk-wasm/dist/core/web-workers/bundles/itk-wasm-pipeline.min.worker.js'
setPipelineWorkerUrl(pipelineWorker)

export * from './index.js'

0 comments on commit c222c18

Please sign in to comment.