pob 23.2.0 → 23.3.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,37 @@
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
+ ## [23.3.0](https://github.com/christophehurpeau/pob/compare/pob@23.2.1...pob@23.3.0) (2024-09-29)
7
+
8
+ ### Features
9
+
10
+ * **deps:** update @pob/eslint-config to v58.1.0 ([#2221](https://github.com/christophehurpeau/pob/issues/2221)) ([f9ebbcf](https://github.com/christophehurpeau/pob/commit/f9ebbcfb5eae25a16771d1d2bb6df7c97002ab26))
11
+ * **deps:** update dependency @yeoman/types to v1.3.0 ([#2194](https://github.com/christophehurpeau/pob/issues/2194)) ([8e5b274](https://github.com/christophehurpeau/pob/commit/8e5b2746ef13db50a48d9a5a18af64179b993ffb))
12
+ * **deps:** update dependency eslint to v9.10.0 ([#2214](https://github.com/christophehurpeau/pob/issues/2214)) ([da9e539](https://github.com/christophehurpeau/pob/commit/da9e5396d3fa2f1a5d13726fa4cbfebc3081ddbc))
13
+ * **deps:** update dependency eslint to v9.11.0 ([#2243](https://github.com/christophehurpeau/pob/issues/2243)) ([521792a](https://github.com/christophehurpeau/pob/commit/521792a67cf787c5b59ffcf233c13d3195cf6de3))
14
+ * **deps:** update dependency mem-fs-editor to v11.1.1 ([#2178](https://github.com/christophehurpeau/pob/issues/2178)) ([5df57e4](https://github.com/christophehurpeau/pob/commit/5df57e4f1adb863eab0ccbd694620ec1350d4993))
15
+ * **deps:** update dependency validate-npm-package-name to v6 ([#2256](https://github.com/christophehurpeau/pob/issues/2256)) ([6ffd7d7](https://github.com/christophehurpeau/pob/commit/6ffd7d72f2d522498e3cd320883f330ed7f20b33))
16
+ * **deps:** update yarn monorepo ([#2232](https://github.com/christophehurpeau/pob/issues/2232)) ([1af03f3](https://github.com/christophehurpeau/pob/commit/1af03f3d7383061780b70f29dbb5119a80b863fc))
17
+
18
+ ### Bug Fixes
19
+
20
+ * checkjs config file support composite ([414b144](https://github.com/christophehurpeau/pob/commit/414b1449146e4b1626f0338944bff8a27ebb1589))
21
+ * **deps:** update @pob/eslint-config to v58.0.1 ([#2191](https://github.com/christophehurpeau/pob/issues/2191)) ([5a574b5](https://github.com/christophehurpeau/pob/commit/5a574b573e0a90b267890df341fde2dcdfad7e14))
22
+ * **deps:** update @pob/eslint-config to v58.0.2 ([#2215](https://github.com/christophehurpeau/pob/issues/2215)) ([a6076ec](https://github.com/christophehurpeau/pob/commit/a6076ecacd2233d3c9a51a44b4ecff8388b119b5))
23
+ * **deps:** update dependency @yeoman/types to v1.2.1 ([#2192](https://github.com/christophehurpeau/pob/issues/2192)) ([3a237f8](https://github.com/christophehurpeau/pob/commit/3a237f8c3ccbec98f41081d2e537a52e1b0b4cba))
24
+ * **deps:** update dependency eslint to v9.11.1 ([#2248](https://github.com/christophehurpeau/pob/issues/2248)) ([8c904f5](https://github.com/christophehurpeau/pob/commit/8c904f54d698a8718acc63cd723a353e37642d26))
25
+ * **deps:** update dependency eslint to v9.9.1 ([#2187](https://github.com/christophehurpeau/pob/issues/2187)) ([b7b72fe](https://github.com/christophehurpeau/pob/commit/b7b72fe362688a457a10f8a4ed6cc506b9da1d24))
26
+ * **deps:** update yarn monorepo to v4.4.1 ([#2190](https://github.com/christophehurpeau/pob/issues/2190)) ([1ff2d31](https://github.com/christophehurpeau/pob/commit/1ff2d3164660814f3516f280827fe78f6b059773))
27
+
28
+ Version bump for dependency: yarn-workspace-utils
29
+ Version bump for dependency: @pob/root
30
+
31
+
32
+ ## [23.2.1](https://github.com/christophehurpeau/pob/compare/pob@23.2.0...pob@23.2.1) (2024-08-15)
33
+
34
+ Version bump for dependency: yarn-workspace-utils
35
+
36
+
6
37
  ## [23.2.0](https://github.com/christophehurpeau/pob/compare/pob@23.1.0...pob@23.2.0) (2024-08-15)
7
38
 
8
39
  ### Features
@@ -6,6 +6,10 @@
6
6
  "compilerOptions": {
7
7
  "allowJs": true,
8
8
  "checkJs": true,
9
+ <% if (composite) { -%>
10
+ "composite": true,
11
+ "tsBuildInfoFile": "node_modules/.cache/tsc/tsbuildinfo",
12
+ <% } -%>
9
13
  "noEmit": true
10
14
  },
11
15
  "include": ["<%= srcDirectory %>/**/*.js"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "23.2.0",
3
+ "version": "23.3.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -41,19 +41,19 @@
41
41
  },
42
42
  "prettier": "@pob/root/prettier-config",
43
43
  "dependencies": {
44
- "@pob/eslint-config": "58.0.0",
45
- "@pob/eslint-config-typescript": "58.0.0",
46
- "@pob/eslint-config-typescript-react": "58.0.0",
44
+ "@pob/eslint-config": "58.1.0",
45
+ "@pob/eslint-config-typescript": "58.1.0",
46
+ "@pob/eslint-config-typescript-react": "58.1.0",
47
47
  "@pob/sort-eslint-config": "6.0.0",
48
48
  "@pob/sort-object": "7.0.0",
49
49
  "@pob/sort-pkg": "8.0.0",
50
50
  "@prettier/sync": "0.5.2",
51
51
  "@types/inquirer": "9.0.7",
52
- "@yarnpkg/cli": "4.4.0",
53
- "@yarnpkg/core": "4.1.2",
52
+ "@yarnpkg/cli": "4.5.0",
53
+ "@yarnpkg/core": "4.1.3",
54
54
  "@yarnpkg/fslib": "3.1.0",
55
- "@yeoman/types": "1.2.0",
56
- "eslint": "9.9.0",
55
+ "@yeoman/types": "1.3.0",
56
+ "eslint": "9.11.1",
57
57
  "findup-sync": "^5.0.0",
58
58
  "git-remote-url": "^1.0.1",
59
59
  "github-username": "^7.0.0",
@@ -62,20 +62,20 @@
62
62
  "lodash.camelcase": "^4.3.0",
63
63
  "lodash.kebabcase": "^4.1.1",
64
64
  "mem-fs": "4.1.0",
65
- "mem-fs-editor": "11.0.1",
65
+ "mem-fs-editor": "11.1.1",
66
66
  "minimist": "1.2.8",
67
67
  "parse-author": "2.0.0",
68
- "pob-dependencies": "14.1.0",
68
+ "pob-dependencies": "14.2.0",
69
69
  "prettier": "3.3.3",
70
70
  "semver": "7.6.3",
71
- "validate-npm-package-name": "^5.0.0",
72
- "yarn-workspace-utils": "6.0.2",
71
+ "validate-npm-package-name": "^6.0.0",
72
+ "yarn-workspace-utils": "6.1.0",
73
73
  "yeoman-environment": "4.4.1",
74
74
  "yeoman-generator": "7.3.2"
75
75
  },
76
76
  "devDependencies": {
77
- "@pob/root": "13.2.0",
78
- "@types/node": "20.14.15",
79
- "typescript": "5.5.4"
77
+ "@pob/root": "13.3.0",
78
+ "@types/node": "20.16.10",
79
+ "typescript": "5.6.2"
80
80
  }
81
81
  }