pob 13.2.1 → 13.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [13.2.3](https://github.com/christophehurpeau/pob/compare/pob@13.2.2...pob@13.2.3) (2023-06-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **pob:** typo types ([b6ea037](https://github.com/christophehurpeau/pob/commit/b6ea03718be51aa32d76fbe281db3a040412e799))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [13.2.2](https://github.com/christophehurpeau/pob/compare/pob@13.2.1...pob@13.2.2) (2023-06-30)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* fix template for tsdoc monorepo ([a48e98d](https://github.com/christophehurpeau/pob/commit/a48e98d2fd309a1b8415f0a1ba41c927ce5f5a10))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [13.2.1](https://github.com/christophehurpeau/pob/compare/pob@13.2.0...pob@13.2.1) (2023-06-30)
|
|
7
25
|
|
|
8
26
|
|
|
@@ -552,7 +552,9 @@ export default class CommonBabelGenerator extends Generator {
|
|
|
552
552
|
const entryDistName = isBrowserOnly ? 'index' : entry;
|
|
553
553
|
const exportName = entry === 'index' ? '.' : `./${entry}`;
|
|
554
554
|
|
|
555
|
-
const targets = {
|
|
555
|
+
const targets = {
|
|
556
|
+
types: `./${this.options.buildDirectory}/definitions/index.d.ts`,
|
|
557
|
+
};
|
|
556
558
|
|
|
557
559
|
const defaultNodeEnv = this.babelEnvs.find(
|
|
558
560
|
(env) => env.target === 'node',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.3",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@pob/root": "8.1.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "17a6cf5590bcbb5a177c743558e3f62e2ca2f28f"
|
|
72
72
|
}
|