@virmator/publish 13.0.1 → 13.0.2
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/dist/publish.js +3 -0
- package/package.json +2 -2
package/dist/publish.js
CHANGED
|
@@ -145,6 +145,9 @@ export const virmatorPublishPlugin = defineVirmatorPlugin(import.meta.dirname, {
|
|
|
145
145
|
await alterPackageEntryPoints(monoRepoRootPath);
|
|
146
146
|
await runShellCommand(publishCommand);
|
|
147
147
|
}
|
|
148
|
+
await Promise.all(alteredPackageJsonFiles.map(async (alteredFile) => {
|
|
149
|
+
await writeFile(alteredFile.path, alteredFile.original);
|
|
150
|
+
}));
|
|
148
151
|
if (!isDryRun) {
|
|
149
152
|
await updateGit(monoRepoRootPath);
|
|
150
153
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@virmator/publish",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.2",
|
|
4
4
|
"description": "Default publish plugin for virmator.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"virmator",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@augment-vir/common": "^29.3.0",
|
|
37
37
|
"@augment-vir/node-js": "^29.3.0",
|
|
38
|
-
"@virmator/core": "^13.0.
|
|
38
|
+
"@virmator/core": "^13.0.2",
|
|
39
39
|
"chalk": "^5.3.0",
|
|
40
40
|
"mri": "^1.2.0",
|
|
41
41
|
"run-time-assertions": "^1.5.2",
|