pob 15.3.0 → 15.4.0
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
|
+
## [15.4.0](https://github.com/christophehurpeau/pob/compare/pob@15.3.1...pob@15.4.0) (2023-12-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update vscode settings for latest version ([062100a](https://github.com/christophehurpeau/pob/commit/062100afd89b9d72dcd14eb8582158c53953c3aa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* fix tsconfig jsx with presets ([0a3786b](https://github.com/christophehurpeau/pob/commit/0a3786be26174e68eb7b5ad43fd447672817f6d4))
|
|
17
|
+
|
|
18
|
+
Version bump for dependency: yarn-workspace-utils
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## [15.3.1](https://github.com/christophehurpeau/pob/compare/pob@15.3.0...pob@15.3.1) (2023-12-10)
|
|
22
|
+
|
|
23
|
+
Note: no notable changes
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [15.3.0](https://github.com/christophehurpeau/pob/compare/pob@15.2.2...pob@15.3.0) (2023-12-10)
|
|
7
29
|
|
|
8
30
|
Note: no notable changes
|
|
@@ -51,9 +51,11 @@
|
|
|
51
51
|
"target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
|
|
52
52
|
"module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
|
53
53
|
"lib": [<%- dom ? '"dom", ' : '' %>"esnext"], /* Polyfills are imported either by babel or with polyfill.io */
|
|
54
|
-
<%= jsx ? '' : '// ' %>"jsx": "<%= jsxPreserve ? 'preserve' : 'react-jsx' %>", /* 'react-jsx' is used with react/jsx-runtime (react >=17 || >= 16.14.0 | >= 15.7.0) */
|
|
55
54
|
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
|
56
55
|
<% } -%>
|
|
56
|
+
<% if(jsx) { -%>
|
|
57
|
+
"jsx": "<%= jsxPreserve ? 'preserve' : 'react-jsx' %>", /* 'react-jsx' is used with react/jsx-runtime (react >=17 || >= 16.14.0 | >= 15.7.0) */
|
|
58
|
+
<% } -%>
|
|
57
59
|
<% if(forceAllowJs) { -%>
|
|
58
60
|
"allowJs": true,
|
|
59
61
|
<% } -%>
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"editor.formatOnSave": true,
|
|
31
31
|
"eslint.codeActionsOnSave.mode": "all",
|
|
32
32
|
"editor.codeActionsOnSave": {
|
|
33
|
-
"source.fixAll.eslint":
|
|
34
|
-
"source.organizeImports":
|
|
33
|
+
"source.fixAll.eslint": "always",
|
|
34
|
+
"source.organizeImports": "never"
|
|
35
35
|
},
|
|
36
36
|
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.4.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -62,15 +62,15 @@
|
|
|
62
62
|
"mem-fs-editor": "11.0.0",
|
|
63
63
|
"minimist": "1.2.8",
|
|
64
64
|
"parse-author": "2.0.0",
|
|
65
|
-
"pob-dependencies": "8.
|
|
65
|
+
"pob-dependencies": "8.11.0",
|
|
66
66
|
"prettier": "2.8.8",
|
|
67
67
|
"semver": "7.5.4",
|
|
68
68
|
"validate-npm-package-name": "^5.0.0",
|
|
69
|
-
"yarn-workspace-utils": "1.
|
|
69
|
+
"yarn-workspace-utils": "1.4.0",
|
|
70
70
|
"yeoman-environment": "4.1.3",
|
|
71
71
|
"yeoman-generator": "7.1.1"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@pob/root": "8.9.
|
|
74
|
+
"@pob/root": "8.9.1"
|
|
75
75
|
}
|
|
76
76
|
}
|