@uirouter/publish-scripts 2.6.5 → 2.6.7
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 +26 -0
- package/package.json +2 -2
- package/publish_yalc_package.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 2.6.7 (2026-01-02)
|
|
2
|
+
[Compare `@uirouter/publish-scripts` versions 2.6.6 and 2.6.7](https://github.com/ui-router/publish-scripts/compare/2.6.6...2.6.7)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Updated `check-peer-dependencies` from 4.3.2 to 4.3.3
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
Changelog for `check-peer-dependencies`:
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
[Compare `check-peer-dependencies` versions 4.3.2 and 4.3.3](https://github.com/christopherthielen/check-peer-dependencies/compare/4.3.2...4.3.3)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* fix resolving packages that have multiple/nested package.json files ([1088836](https://github.com/christopherthielen/check-peer-dependencies/commit/1088836))
|
|
19
|
+
|
|
20
|
+
## 2.6.6 (2026-01-01)
|
|
21
|
+
[Compare `@uirouter/publish-scripts` versions 2.6.5 and 2.6.6](https://github.com/ui-router/publish-scripts/compare/2.6.5...2.6.6)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **yalc:** exclude yarn.lock deletion when rsync'ing from src to dest ([8eceed5](https://github.com/ui-router/publish-scripts/commit/8eceed5))
|
|
26
|
+
|
|
1
27
|
## 2.6.5 (2026-01-01)
|
|
2
28
|
[Compare `@uirouter/publish-scripts` versions 2.6.3 and 2.6.5](https://github.com/ui-router/publish-scripts/compare/2.6.3...2.6.5)
|
|
3
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uirouter/publish-scripts",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7",
|
|
4
4
|
"description": "Helper scripts for publishing UI-Router projects",
|
|
5
5
|
"main": "x",
|
|
6
6
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"util": "./util.js"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"check-peer-dependencies": "^4.3.
|
|
32
|
+
"check-peer-dependencies": "^4.3.3",
|
|
33
33
|
"conventional-changelog": "^3.1.24",
|
|
34
34
|
"conventional-changelog-ui-router-core": "^1.4.2",
|
|
35
35
|
"find-parent-dir": "^0.3.1",
|
package/publish_yalc_package.js
CHANGED
|
@@ -53,11 +53,13 @@ function publishYalcPackage(installTargetDir, installSource, flags) {
|
|
|
53
53
|
// Update the cached git repo with the current package contents
|
|
54
54
|
process.chdir(installTargetDir);
|
|
55
55
|
util._exec(`rsync -a --delete `+
|
|
56
|
+
`--exclude='/yarn.lock' `+
|
|
57
|
+
`--exclude='/yalc.lock' `+
|
|
56
58
|
`--exclude='/.git/' `+
|
|
57
59
|
`--exclude='**/.git/' `+
|
|
58
60
|
`--exclude='/node_modules/' `+
|
|
59
61
|
`--exclude='**/node_modules/' `+
|
|
60
|
-
`"${installSourceDir}"
|
|
62
|
+
`"${installSourceDir}/" "${installTargetDir}/"`);
|
|
61
63
|
|
|
62
64
|
// Commit the changes from the current package (if any)
|
|
63
65
|
util._exec('git add . && git diff --staged --quiet || git commit -m "update from source directory"');
|