@heroiclands/package-build 20.2.0 → 20.2.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 +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @heroiclands/package-build
|
|
2
2
|
|
|
3
|
+
## 20.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f39c7e8: Restore the lockfile refresh to the release, and re-sync the lockfile 20.2.0
|
|
8
|
+
shipped without.
|
|
9
|
+
|
|
10
|
+
`changeset version` rewrites `package.json` and the CHANGELOG and never touches
|
|
11
|
+
`package-lock.json`, so the lockfile's root `version` keeps the previous
|
|
12
|
+
release's number. The `version-script` input is the only seam the changesets
|
|
13
|
+
action offers between versioning and committing, which is where the refresh has
|
|
14
|
+
to happen for it to land in the same commit.
|
|
15
|
+
|
|
16
|
+
That input was removed for one release on the theory that it was why `changeset
|
|
17
|
+
version` could not find its own binary. It was not: `node_modules` had been
|
|
18
|
+
committed as a symlink to an absolute path, and the action's `git reset --hard`
|
|
19
|
+
restored it over the install, so nothing resolved by any mechanism. With the
|
|
20
|
+
symlink gone the seam works again, and it is back.
|
|
21
|
+
|
|
3
22
|
## 20.2.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heroiclands/package-build",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"description": "Shared toolchain for building and shipping a HeroicLands Foundry VTT package — content compilation, manifest, localization, staging, bundle, release and deployment.",
|
|
5
5
|
"license": "GPL-3.0-or-later",
|
|
6
6
|
"type": "module",
|