pob 13.5.0 → 14.0.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,28 @@
|
|
|
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
|
+
## [14.0.1](https://github.com/christophehurpeau/pob/compare/pob@14.0.0...pob@14.0.1) (2023-09-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix yarn publish configuration ([997808f](https://github.com/christophehurpeau/pob/commit/997808fae5154309eacd39d6cc04ee37c1982262))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [14.0.0](https://github.com/christophehurpeau/pob/compare/pob@13.5.0...pob@14.0.0) (2023-09-18)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* **lerna-light:** replace yarn lerna publish to yarn workpaces foreach --no-private npm publish --tolerate-republish
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **lerna-light:** remove publish command ([c838a68](https://github.com/christophehurpeau/pob/commit/c838a680fb03247b3254780e2850cfb4ae07e681))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [13.5.0](https://github.com/christophehurpeau/pob/compare/pob@13.4.0...pob@13.5.0) (2023-09-18)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -62,7 +62,6 @@ jobs:
|
|
|
62
62
|
YARN_ENABLE_IMMUTABLE_INSTALLS: false
|
|
63
63
|
<% if (publish) { -%>
|
|
64
64
|
|
|
65
|
-
<% if (enableYarnVersion) { -%>
|
|
66
65
|
- name: Publish to npm
|
|
67
66
|
run: |
|
|
68
67
|
if [ -z "$NODE_AUTH_TOKEN" ]; then
|
|
@@ -72,15 +71,6 @@ jobs:
|
|
|
72
71
|
echo >> ./.yarnrc.yml
|
|
73
72
|
echo "npmAuthToken: $NODE_AUTH_TOKEN" >> ./.yarnrc.yml
|
|
74
73
|
yarn workspaces foreach --no-private npm publish --tolerate-republish
|
|
75
|
-
<% } else { -%>
|
|
76
|
-
- uses: actions/setup-node@v3
|
|
77
|
-
if: github.ref == 'refs/heads/main' && !inputs.dry-run
|
|
78
|
-
with:
|
|
79
|
-
node-version: 18
|
|
80
|
-
registry-url: "https://registry.npmjs.org"
|
|
81
|
-
|
|
82
|
-
- run: yarn lerna publish from-git --no-verify-access --yes
|
|
83
|
-
<% } -%>
|
|
84
74
|
if: github.ref == 'refs/heads/main' && !inputs.dry-run
|
|
85
75
|
env:
|
|
86
76
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -59,14 +59,13 @@
|
|
|
59
59
|
"mem-fs-editor": "10.0.2",
|
|
60
60
|
"minimist": "1.2.8",
|
|
61
61
|
"parse-author": "2.0.0",
|
|
62
|
-
"pob-dependencies": "8.5.
|
|
62
|
+
"pob-dependencies": "8.5.1",
|
|
63
63
|
"prettier": "2.8.8",
|
|
64
64
|
"semver": "7.5.4",
|
|
65
65
|
"yeoman-environment": "4.0.0-beta.4",
|
|
66
66
|
"yeoman-generator": "6.0.0-rc.4"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@pob/root": "8.2.
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
}
|
|
69
|
+
"@pob/root": "8.2.2"
|
|
70
|
+
}
|
|
71
|
+
}
|