pob 10.3.0 → 10.4.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,45 @@
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
+ ## [10.4.1](https://github.com/christophehurpeau/pob/compare/pob@10.4.0...pob@10.4.1) (2022-03-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * alp-rollup-plugin-config in devDependencies ([40e6a09](https://github.com/christophehurpeau/pob/commit/40e6a09a8bb9a78412a75834635c813bf377f756))
12
+
13
+
14
+
15
+
16
+
17
+ # [10.4.0](https://github.com/christophehurpeau/pob/compare/pob@10.3.1...pob@10.4.0) (2022-03-05)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **deps:** update dependency @yarnpkg/parsers to v2.5.0 ([#1216](https://github.com/christophehurpeau/pob/issues/1216)) ([87cfb68](https://github.com/christophehurpeau/pob/commit/87cfb68046d184a30c0e5ede696dd4d74a7c7382))
23
+
24
+
25
+ ### Features
26
+
27
+ * **deps:** update dependency eslint to v8.10.0 ([#1223](https://github.com/christophehurpeau/pob/issues/1223)) ([a0bec26](https://github.com/christophehurpeau/pob/commit/a0bec26c62a46771458e061add0f008dcd5e2681))
28
+ * update actions/checkout ([b8abb40](https://github.com/christophehurpeau/pob/commit/b8abb40cfecaeceda0998246be17c7ef35f05d32))
29
+
30
+
31
+
32
+
33
+
34
+ ## [10.3.1](https://github.com/christophehurpeau/pob/compare/pob@10.3.0...pob@10.3.1) (2022-02-20)
35
+
36
+
37
+ ### Bug Fixes
38
+
39
+ * **pob:** fix app import/resolver config ([5179b36](https://github.com/christophehurpeau/pob/commit/5179b364d1b72f0ed3a3b7df577e46d49e23d69a))
40
+
41
+
42
+
43
+
44
+
6
45
  # [10.3.0](https://github.com/christophehurpeau/pob/compare/pob@10.2.1...pob@10.3.0) (2022-02-20)
7
46
 
8
47
 
@@ -727,7 +727,8 @@ export default class CommonBabelGenerator extends Generator {
727
727
  /* pob-babel config */
728
728
 
729
729
  packageUtils.removeDevDependencies(pkg, ['@rollup/plugin-run']);
730
- packageUtils.addOrRemoveDependencies(
730
+ packageUtils.removeDependencies(pkg, ['alp-rollup-plugin-config']);
731
+ packageUtils.addOrRemoveDevDependencies(
731
732
  pkg,
732
733
  useBabel && this.options.isApp && this.options.useAppConfig,
733
734
  ['alp-rollup-plugin-config'],
@@ -477,7 +477,7 @@ export default class CommonLintGenerator extends Generator {
477
477
  'import/resolver': this.options.enableSrcResolver
478
478
  ? {
479
479
  node: {
480
- paths: ['./node_modules', './src'],
480
+ moduleDirectory: ['node_modules', 'src'],
481
481
  },
482
482
  }
483
483
  : false,
@@ -17,7 +17,7 @@ jobs:
17
17
  package-name: release-please-action
18
18
 
19
19
  # publish:
20
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v3
21
21
  # these if statements ensure that a publication only occurs when
22
22
  # a new release is created:
23
23
  if: ${{ steps.release.outputs.release_created }}
@@ -8,7 +8,7 @@ jobs:
8
8
  create-documentation-and-deploy:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v2
11
+ - uses: actions/checkout@v3
12
12
 
13
13
  - uses: actions/setup-node@v2
14
14
  with:
@@ -11,7 +11,7 @@ jobs:
11
11
  node-version: [<% if (supportsNode14) { -%>14.x, <% } -%>16.x]
12
12
 
13
13
  steps:
14
- - uses: actions/checkout@v2
14
+ - uses: actions/checkout@v3
15
15
 
16
16
  - name: Use Node.js ${{ matrix.node-version }}
17
17
  uses: actions/setup-node@v2
@@ -11,7 +11,7 @@ jobs:
11
11
  publish:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
- - uses: actions/checkout@v2
14
+ - uses: actions/checkout@v3
15
15
  with:
16
16
  token: ${{ secrets.GH_TOKEN }}
17
17
  fetch-depth: 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "10.3.0",
3
+ "version": "10.4.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -47,8 +47,8 @@
47
47
  "@pob/sort-eslint-config": "^3.0.1",
48
48
  "@pob/sort-object": "^4.0.1",
49
49
  "@pob/sort-pkg": "^4.0.1",
50
- "@yarnpkg/parsers": "2.5.0-rc.14",
51
- "eslint": "8.9.0",
50
+ "@yarnpkg/parsers": "2.5.0",
51
+ "eslint": "8.10.0",
52
52
  "findup-sync": "^5.0.0",
53
53
  "git-remote-url": "^1.0.1",
54
54
  "github-username": "^6.0.0",
@@ -67,5 +67,5 @@
67
67
  "yeoman-environment": "^3.5.1",
68
68
  "yeoman-generator": "^5.4.0"
69
69
  },
70
- "gitHead": "033cb44fe500dedc8aed5c19484ef39baa7a90b9"
70
+ "gitHead": "56b146d7339ba138d27e90e0b95119cb2a309780"
71
71
  }