pob 13.2.2 → 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,15 @@
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
+
6
15
  ## [13.2.2](https://github.com/christophehurpeau/pob/compare/pob@13.2.1...pob@13.2.2) (2023-06-30)
7
16
 
8
17
 
@@ -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.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": "e2c79849516fb1ad643cc2611bb4a001fad2e194"
71
+ "gitHead": "17a6cf5590bcbb5a177c743558e3f62e2ca2f28f"
72
72
  }