@virmator/publish 14.7.2 → 14.8.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/dist/publish.js +2 -2
- package/package.json +6 -6
package/dist/publish.js
CHANGED
|
@@ -139,11 +139,11 @@ export const virmatorPublishPlugin = defineVirmatorPlugin(import.meta.dirname, {
|
|
|
139
139
|
!existsSync(join(packagePath, updatedPackageJson.main))) {
|
|
140
140
|
throw new Error(`Missing 'main' file '${updatedPackageJson.main}' from '${relative(monoRepoRootPath, packageJsonPath)}'.`);
|
|
141
141
|
}
|
|
142
|
-
if (updatedPackageJson.module &&
|
|
142
|
+
else if (updatedPackageJson.module &&
|
|
143
143
|
!existsSync(join(packagePath, updatedPackageJson.module))) {
|
|
144
144
|
throw new Error(`Missing 'module' file '${updatedPackageJson.module}' from '${relative(monoRepoRootPath, packageJsonPath)}'.`);
|
|
145
145
|
}
|
|
146
|
-
if (updatedPackageJson.types &&
|
|
146
|
+
else if (updatedPackageJson.types &&
|
|
147
147
|
!existsSync(join(packagePath, updatedPackageJson.types))) {
|
|
148
148
|
throw new Error(`Missing 'types' file '${updatedPackageJson.types}' from '${relative(monoRepoRootPath, packageJsonPath)}'.`);
|
|
149
149
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@virmator/publish",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.8.1",
|
|
4
4
|
"description": "Default publish plugin for virmator.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"virmator",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"test:update": "npm test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@augment-vir/assert": "^31.
|
|
38
|
-
"@augment-vir/common": "^31.
|
|
39
|
-
"@augment-vir/node": "^31.
|
|
40
|
-
"@virmator/core": "^14.
|
|
37
|
+
"@augment-vir/assert": "^31.67.1",
|
|
38
|
+
"@augment-vir/common": "^31.67.1",
|
|
39
|
+
"@augment-vir/node": "^31.67.1",
|
|
40
|
+
"@virmator/core": "^14.8.1",
|
|
41
41
|
"mri": "^1.2.0",
|
|
42
42
|
"semver": "^7.7.4",
|
|
43
|
-
"simple-git": "^3.
|
|
43
|
+
"simple-git": "^3.32.3",
|
|
44
44
|
"url-vir": "^2.1.7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|