pob 28.1.1 → 28.2.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,22 @@
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.0](https://github.com/christophehurpeau/pob/compare/pob@28.1.1...pob@28.2.0) (2025-06-08)
7
+
8
+ ### Features
9
+
10
+ * **deps:** update dependency eslint to v9.28.0 ([#2518](https://github.com/christophehurpeau/pob/issues/2518)) ([24dad7a](https://github.com/christophehurpeau/pob/commit/24dad7a25e08ec319097ea365230885f20105096))
11
+ * prepare for check-packages removal ([b322e12](https://github.com/christophehurpeau/pob/commit/b322e123d95729840878b25cadfc001c6769f104))
12
+ * set tz for tests ([f427efd](https://github.com/christophehurpeau/pob/commit/f427efdd887a7b1f474828bedabdc5e2656e5662))
13
+
14
+ ### Bug Fixes
15
+
16
+ * **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))
17
+
18
+ Version bump for dependency: yarn-workspace-utils
19
+ Version bump for dependency: @pob/root
20
+
21
+
6
22
  ## [28.1.1](https://github.com/christophehurpeau/pob/compare/pob@28.1.0...pob@28.1.1) (2025-04-27)
7
23
 
8
24
  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
- let doesJsCheckPackagesExists = this.fs.exists(
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "28.1.1",
3
+ "version": "28.2.0",
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.7",
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.25.1",
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.0.0",
69
+ "pob-dependencies": "19.1.0",
70
70
  "prettier": "3.5.3",
71
71
  "semver": "7.7.1",
72
72
  "typescript": "5.8.3",
73
73
  "validate-npm-package-name": "^6.0.0",
74
- "yarn-workspace-utils": "8.7.0",
74
+ "yarn-workspace-utils": "8.8.0",
75
75
  "yeoman-environment": "4.4.3",
76
76
  "yeoman-generator": "7.5.1"
77
77
  },
78
78
  "devDependencies": {
79
- "@pob/root": "18.0.2",
80
- "@types/node": "22.15.2"
79
+ "@pob/root": "18.1.0",
80
+ "@types/node": "22.15.17"
81
81
  }
82
82
  }