Skip to content

Commit 20db946

Browse files
Bump to version 1.1.2
Remove zephyr which breaks the production build and does not improve artifact size.
1 parent 4d402fc commit 20db946

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.1.2] - 2023-05-05
10+
## Fixed
11+
- Issue with optimized production build causing import errors on package import.
12+
913
## [1.1.1] - 2023-05-05
1014
## Fixed
1115
- Unable to parse PhyloXML self-closing `<clade />` tags correctly.
@@ -29,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2933
- Query nodes and edges
3034

3135
[Unreleased]: https://github.com/vibbits/phylio/compare/v1.1.1...HEAD
36+
[1.1.2]: https://github.com/vibbits/phylio/compare/v1.1.1...v1.1.2
3237
[1.1.1]: https://github.com/vibbits/phylio/compare/v1.1.0...v1.1.1
3338
[1.1.0]: https://github.com/vibbits/phylio/compare/v1.0.1...v1.1.0
3439
[1.0.1]: https://github.com/vibbits/phylio/compare/v1.0.0...v1.0.1

build.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ var shared = {
66
bundle: true,
77
minify: true,
88
platform: "neutral",
9+
format: "esm",
910
external: pkg.dependencies ? Object.keys(pkg.dependencies) : [],
1011
};
1112

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vibbioinfocore/phylio",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Read, write, and manipulate phylogenetic trees",
55
"main": "dist/index.js",
66
"type": "module",
@@ -9,7 +9,7 @@
99
},
1010
"scripts": {
1111
"build:debug": "spago -x javascript.dhall build && node ./build-debug.js",
12-
"build:prod": "spago -x javascript.dhall build -u '-o ps_output --codegen corefn' && zephyr -f -e -i ps_output -g 'corefn' Bio.Phylogeny JsLib && purs-backend-es build --int-tags --corefn-dir dce-output --output-dir output && node ./build.js && npm-dts generate --entry js/main.ts -L debug -o dist/index.d.ts",
12+
"build:prod": "spago -x javascript.dhall build -u '-o ps_output --codegen corefn' && purs-backend-es build --int-tags --corefn-dir ps_output --output-dir output && node ./build.js && npm-dts generate --entry js/main.ts -L debug -o dist/index.d.ts",
1313
"test": "spago -x test.dhall test && npm run js:test",
1414
"js:test": "spago -x javascript.dhall build && ava",
1515
"lint": "tsc --noEmit && eslint 'js/**/*.ts' 'test/js/**/*.ts'",

0 commit comments

Comments
 (0)