diff --git a/CHANGELOG.md b/CHANGELOG.md index fb23781..5300858 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.3.2](https://github.com/qiwi/mixin/compare/v1.3.1...v1.3.2) (2021-11-12) + + +### Bug Fixes + +* **package:** fix ts target path ([1031ae6](https://github.com/qiwi/mixin/commit/1031ae69f885f9ead3d934cd6c1025a4bf64c27c)) + ## [1.3.1](https://github.com/qiwi/mixin/compare/v1.3.0...v1.3.1) (2021-11-11) # [1.3.0](https://github.com/qiwi/mixin/compare/v1.2.12...v1.3.0) (2021-11-11) diff --git a/package.json b/package.json index 335d3bf..c2916eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@qiwi/mixin", - "version": "1.3.1", + "version": "1.3.2", "description": "RnD project to compare various mixin approaches in TypeScript", "private": false, "main": "./target/es5/index.js", @@ -47,7 +47,7 @@ "build": "yarn clean && npm-run-all -p -l build:ts build:es5 build:es6 build:libdef build:umd docs && yarn build:esmfix", "build:es5": "mkdir -p target/es5 && tsc -p tsconfig.es5.json", "build:es6": "mkdir -p target/es6 && tsc -p tsconfig.es6.json", - "build:ts": "mkdir -p target/ts && cp -r src/main/ts/ target/ts/", + "build:ts": "mkdir -p target/ts/ && cp -rp ./src/main/ts/* ./target/ts/", "build:umd": "microbundle build src/main/ts/index.ts -o target/umd -f umd", "build:libdef": "libdefkit --tsconfig=tsconfig.es5.json --tsconfig=tsconfig.es6.json", "build:esmfix": "tsc-esm-fix --target='target/es6' --ext='.mjs'",