pob 28.1.1 → 28.2.1
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,33 @@
|
|
|
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
|
+
## [28.2.1](https://github.com/christophehurpeau/pob/compare/pob@28.2.0...pob@28.2.1) (2025-06-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** update dependency semver to v7.7.2 ([#2530](https://github.com/christophehurpeau/pob/issues/2530)) ([9f9282c](https://github.com/christophehurpeau/pob/commit/9f9282ccafd69b9de83c6129d8f74702dd1300e2))
|
|
11
|
+
* fix svg codecov ([8916de4](https://github.com/christophehurpeau/pob/commit/8916de46835dddd3977f10fa56bd50f6c9f670bc))
|
|
12
|
+
|
|
13
|
+
Version bump for dependency: yarn-workspace-utils
|
|
14
|
+
Version bump for dependency: @pob/root
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [28.2.0](https://github.com/christophehurpeau/pob/compare/pob@28.1.1...pob@28.2.0) (2025-06-08)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **deps:** update dependency eslint to v9.28.0 ([#2518](https://github.com/christophehurpeau/pob/issues/2518)) ([24dad7a](https://github.com/christophehurpeau/pob/commit/24dad7a25e08ec319097ea365230885f20105096))
|
|
22
|
+
* prepare for check-packages removal ([b322e12](https://github.com/christophehurpeau/pob/commit/b322e123d95729840878b25cadfc001c6769f104))
|
|
23
|
+
* set tz for tests ([f427efd](https://github.com/christophehurpeau/pob/commit/f427efdd887a7b1f474828bedabdc5e2656e5662))
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **deps:** update dependency @types/inquirer to v9.0.8 ([#2523](https://github.com/christophehurpeau/pob/issues/2523)) ([1145895](https://github.com/christophehurpeau/pob/commit/1145895ee9d9e2e246bcef7f41680e4d8d7271ee))
|
|
28
|
+
|
|
29
|
+
Version bump for dependency: yarn-workspace-utils
|
|
30
|
+
Version bump for dependency: @pob/root
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [28.1.1](https://github.com/christophehurpeau/pob/compare/pob@28.1.0...pob@28.1.1) (2025-04-27)
|
|
7
34
|
|
|
8
35
|
Version bump for dependency: @pob/root
|
|
@@ -296,7 +296,7 @@ export default class CommonTestingGenerator extends Generator {
|
|
|
296
296
|
}) => {
|
|
297
297
|
switch (testRunner) {
|
|
298
298
|
case "jest": {
|
|
299
|
-
return
|
|
299
|
+
return `TZ=UTC ${
|
|
300
300
|
shouldUseExperimentalVmModules
|
|
301
301
|
? "NODE_OPTIONS=--experimental-vm-modules "
|
|
302
302
|
: ""
|
|
@@ -313,7 +313,7 @@ export default class CommonTestingGenerator extends Generator {
|
|
|
313
313
|
throw new Error("Invalid workspacesPattern");
|
|
314
314
|
}
|
|
315
315
|
const experimentalTestCoverage = false; // todo configure src directory and remove test files
|
|
316
|
-
return
|
|
316
|
+
return `TZ=UTC ${
|
|
317
317
|
tsTestUtil === "ts-node"
|
|
318
318
|
? "TS_NODE_PROJECT=tsconfig.test.json "
|
|
319
319
|
: ""
|
|
@@ -332,7 +332,7 @@ export default class CommonTestingGenerator extends Generator {
|
|
|
332
332
|
}.${this.options.typescript ? "ts" : "js"}`}`;
|
|
333
333
|
}
|
|
334
334
|
case "vitest": {
|
|
335
|
-
return
|
|
335
|
+
return `TZ=UTC ${
|
|
336
336
|
coverage || coverageJson
|
|
337
337
|
? `POB_VITEST_COVERAGE=${`json${coverageJson ? "" : ",text"} `}`
|
|
338
338
|
: ""
|
|
@@ -222,19 +222,10 @@ export default class CorePackageGenerator extends Generator {
|
|
|
222
222
|
const doesMjsCheckPackagesExists = this.fs.exists(
|
|
223
223
|
this.destinationPath("scripts/check-packages.mjs"),
|
|
224
224
|
);
|
|
225
|
-
|
|
225
|
+
const doesJsCheckPackagesExists = this.fs.exists(
|
|
226
226
|
this.destinationPath("scripts/check-packages.js"),
|
|
227
227
|
);
|
|
228
228
|
|
|
229
|
-
if (pkg.type === "module" && !doesJsCheckPackagesExists) {
|
|
230
|
-
doesJsCheckPackagesExists = true;
|
|
231
|
-
this.fs.copyTpl(
|
|
232
|
-
this.templatePath("check-packages.js.ejs"),
|
|
233
|
-
this.destinationPath("scripts/check-packages.js"),
|
|
234
|
-
{},
|
|
235
|
-
);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
229
|
if (doesJsCheckPackagesExists || doesMjsCheckPackagesExists) {
|
|
239
230
|
packageUtils.addDevDependencies(pkg, ["check-package-dependencies"]);
|
|
240
231
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<a href="https://npmjs.org/package/<%= packageName %>"><img src="https://img.shields.io/npm/types/<%= packageName %>.svg?style=flat-square" alt="types"></a>
|
|
17
17
|
<% } if (gitHost === 'github') { -%>
|
|
18
18
|
<% if (testing && codecov) { -%>
|
|
19
|
-
<a href="https://codecov.io/gh/<%= gitAccount %>/<%= gitName %>"><img src="https://img.shields.io/codecov/c/github/<%= gitAccount %>/<%= gitName %>/
|
|
19
|
+
<a href="https://codecov.io/gh/<%= gitAccount %>/<%= gitName %>"><img src="https://img.shields.io/codecov/c/github/<%= gitAccount %>/<%= gitName %>/main.svg?style=flat-square"></a>
|
|
20
20
|
<% } -%>
|
|
21
21
|
<% if (documentationUrl) { -%>
|
|
22
22
|
<a href="<%= documentationUrl %>"><img src="https://img.shields.io/website.svg?down_color=lightgrey&down_message=offline&up_color=blue&up_message=online&url=<%= encodeURIComponent(documentationUrl) %>?style=flat-square"></a>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "28.
|
|
3
|
+
"version": "28.2.1",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"@pob/sort-object": "9.0.2",
|
|
50
50
|
"@pob/sort-pkg": "11.0.3",
|
|
51
51
|
"@prettier/sync": "0.5.5",
|
|
52
|
-
"@types/inquirer": "9.0.
|
|
52
|
+
"@types/inquirer": "9.0.8",
|
|
53
53
|
"@yarnpkg/cli": "4.9.1",
|
|
54
54
|
"@yarnpkg/core": "4.4.1",
|
|
55
55
|
"@yarnpkg/fslib": "3.1.2",
|
|
56
56
|
"@yeoman/types": "1.6.0",
|
|
57
|
-
"eslint": "9.
|
|
57
|
+
"eslint": "9.28.0",
|
|
58
58
|
"findup-sync": "^5.0.0",
|
|
59
59
|
"git-remote-url": "^1.0.1",
|
|
60
60
|
"github-username": "^9.0.0",
|
|
@@ -66,17 +66,17 @@
|
|
|
66
66
|
"mem-fs-editor": "11.1.4",
|
|
67
67
|
"minimist": "1.2.8",
|
|
68
68
|
"parse-author": "2.0.0",
|
|
69
|
-
"pob-dependencies": "19.
|
|
69
|
+
"pob-dependencies": "19.1.1",
|
|
70
70
|
"prettier": "3.5.3",
|
|
71
|
-
"semver": "7.7.
|
|
71
|
+
"semver": "7.7.2",
|
|
72
72
|
"typescript": "5.8.3",
|
|
73
73
|
"validate-npm-package-name": "^6.0.0",
|
|
74
|
-
"yarn-workspace-utils": "8.
|
|
74
|
+
"yarn-workspace-utils": "8.8.1",
|
|
75
75
|
"yeoman-environment": "4.4.3",
|
|
76
76
|
"yeoman-generator": "7.5.1"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@pob/root": "18.
|
|
80
|
-
"@types/node": "22.15.
|
|
79
|
+
"@pob/root": "18.1.1",
|
|
80
|
+
"@types/node": "22.15.30"
|
|
81
81
|
}
|
|
82
82
|
}
|