Skip to content

Commit

Permalink
Merge branch 'release/1.11.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bahul Neel Upadhyaya committed Mar 12, 2024
2 parents 3b13673 + f3d89cd commit 667b43a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.4
1.11.5
2 changes: 1 addition & 1 deletion build-shadow.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
rm -rf dist
npx shadow-cljs $@ release portal browser esm npm || exit $?
npx shadow-cljs $@ release portal browser esm npm worker || exit $?
cat >dist/cjs/package.json <<!EOF
{
"type": "commonjs"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@totalperspective/pondermatic",
"version": "1.11.4",
"version": "1.11.5",
"description": "Functional effect system driven rules engine",
"engines": {
"node": ">=16"
Expand Down
9 changes: 9 additions & 0 deletions shadow-cljs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@
{:exports {default pondermatic.index/exports}
:depends-on #{}}}
:release {}}

:worker
{:target :browser
:output-dir "dist/worker"
:asset-path "/"
:compiler-options {:reader-features #{:cljs/browser}}
:modules {:worker
{:init-fn pondermatic.browser.worker/init
:web-worker true}}}
:browser
{:target :browser
:output-dir "dist/browser"
Expand Down

0 comments on commit 667b43a

Please sign in to comment.