pob 11.4.1 → 11.4.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,28 @@
|
|
|
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
|
+
## [11.4.3](https://github.com/christophehurpeau/pob/compare/pob@11.4.2...pob@11.4.3) (2022-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix config babel with pob-babel preset esm ([ffb94f0](https://github.com/christophehurpeau/pob/commit/ffb94f09a7014edbb82106db66fff4379d17d2d9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [11.4.2](https://github.com/christophehurpeau/pob/compare/pob@11.4.1...pob@11.4.2) (2022-11-19)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* tsc and non composite ([bdfb6a3](https://github.com/christophehurpeau/pob/commit/bdfb6a373cdcab7f0e0f981c0743debab82e31fd))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [11.4.1](https://github.com/christophehurpeau/pob/compare/pob@11.4.0...pob@11.4.1) (2022-11-18)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -304,7 +304,7 @@ export default class CommonBabelGenerator extends Generator {
|
|
|
304
304
|
|
|
305
305
|
const shouldBuildDefinitions = !this.options.isApp && useBabel;
|
|
306
306
|
packageUtils.addOrRemoveScripts(pkg, shouldBuildDefinitions, {
|
|
307
|
-
'build:definitions': 'tsc -p',
|
|
307
|
+
'build:definitions': 'tsc -p tsconfig.json',
|
|
308
308
|
});
|
|
309
309
|
|
|
310
310
|
if (shouldBuildDefinitions) {
|
|
@@ -8,7 +8,7 @@ module.exports = function babelConfig(api) {
|
|
|
8
8
|
return {
|
|
9
9
|
only: [<%- only %>],
|
|
10
10
|
presets: [
|
|
11
|
-
[
|
|
11
|
+
['pob-babel/preset.js'<% if (!jestExperimentalESM) { %>, { modules: 'commonjs' }<% } %>]
|
|
12
12
|
<% if (hasReact) { %>, [
|
|
13
13
|
'@babel/preset-react',
|
|
14
14
|
{
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
"newLine": "lf",
|
|
14
14
|
<% if (emit) { -%>
|
|
15
15
|
"outDir": "dist/definitions",
|
|
16
|
+
<% if (composite) { -%>
|
|
16
17
|
"tsBuildInfoFile": "dist/definitions/tsbuildinfo",
|
|
18
|
+
<% } -%>
|
|
17
19
|
<% } else if (composite) { -%>
|
|
18
20
|
"outDir": "node_modules/.cache/tsc",
|
|
19
21
|
"tsBuildInfoFile": "node_modules/.cache/tsc/tsbuildinfo",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "11.4.
|
|
3
|
+
"version": "11.4.3",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@pob/root": "7.2.0"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "7dd064381689bf8324f688292bfa0bf266d2ec24"
|
|
70
70
|
}
|