pob 10.3.1 → 10.5.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,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.5.0](https://github.com/christophehurpeau/pob/compare/pob@10.4.1...pob@10.5.0) (2022-03-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * update actions/setup-node@v3 ([2ab3475](https://github.com/christophehurpeau/pob/commit/2ab3475da500ae3aaee0d9969eb7bb9bc207a8d0))
12
+
13
+
14
+
15
+
16
+
17
+ ## [10.4.1](https://github.com/christophehurpeau/pob/compare/pob@10.4.0...pob@10.4.1) (2022-03-05)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * alp-rollup-plugin-config in devDependencies ([40e6a09](https://github.com/christophehurpeau/pob/commit/40e6a09a8bb9a78412a75834635c813bf377f756))
23
+
24
+
25
+
26
+
27
+
28
+ # [10.4.0](https://github.com/christophehurpeau/pob/compare/pob@10.3.1...pob@10.4.0) (2022-03-05)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * **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))
34
+
35
+
36
+ ### Features
37
+
38
+ * **deps:** update dependency eslint to v8.10.0 ([#1223](https://github.com/christophehurpeau/pob/issues/1223)) ([a0bec26](https://github.com/christophehurpeau/pob/commit/a0bec26c62a46771458e061add0f008dcd5e2681))
39
+ * update actions/checkout ([b8abb40](https://github.com/christophehurpeau/pob/commit/b8abb40cfecaeceda0998246be17c7ef35f05d32))
40
+
41
+
42
+
43
+
44
+
6
45
  ## [10.3.1](https://github.com/christophehurpeau/pob/compare/pob@10.3.0...pob@10.3.1) (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'],
@@ -17,12 +17,12 @@ 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 }}
24
24
 
25
- - uses: actions/setup-node@v2
25
+ - uses: actions/setup-node@v3
26
26
  with:
27
27
  node-version: 14
28
28
  registry-url: 'https://registry.npmjs.org'
@@ -8,9 +8,9 @@ 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
- - uses: actions/setup-node@v2
13
+ - uses: actions/setup-node@v3
14
14
  with:
15
15
  node-version: 16
16
16
 
@@ -11,10 +11,10 @@ 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
- uses: actions/setup-node@v2
17
+ uses: actions/setup-node@v3
18
18
  with:
19
19
  node-version: ${{ matrix.node-version }}
20
20
 
@@ -11,12 +11,12 @@ 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
18
18
 
19
- - uses: actions/setup-node@v2
19
+ - uses: actions/setup-node@v3
20
20
  with:
21
21
  node-version: 14
22
22
 
@@ -59,7 +59,7 @@ jobs:
59
59
  YARN_ENABLE_IMMUTABLE_INSTALLS: false
60
60
  <% if (publish) { -%>
61
61
 
62
- - uses: actions/setup-node@v2
62
+ - uses: actions/setup-node@v3
63
63
  if: |
64
64
  github.ref == 'refs/heads/main'
65
65
  && contains(github.event.inputs.dry-run, 'y') == false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "10.3.1",
3
+ "version": "10.5.0",
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": "653a6285b86a5d132da7b351abdad31eb5f44e1d"
70
+ "gitHead": "2a85644c2f3aa3147e3baa57f8b05119228e22e4"
71
71
  }