@xylabs/ts-scripts-yarn3 7.2.28 → 7.2.30
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/actions/deploy-major.mjs +1 -2
- package/dist/actions/deploy-major.mjs.map +1 -1
- package/dist/actions/deploy-minor.mjs +1 -2
- package/dist/actions/deploy-minor.mjs.map +1 -1
- package/dist/actions/deploy-next.mjs +1 -2
- package/dist/actions/deploy-next.mjs.map +1 -1
- package/dist/actions/deploy.mjs +1 -2
- package/dist/actions/deploy.mjs.map +1 -1
- package/dist/actions/index.mjs +4 -8
- package/dist/actions/index.mjs.map +1 -1
- package/dist/bin/package/clean-outputs.mjs +0 -0
- package/dist/bin/package/clean-typescript.mjs +0 -0
- package/dist/bin/package/compile-tsup.mjs +0 -0
- package/dist/bin/xy.mjs +4 -8
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +4 -8
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +4 -8
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +4 -8
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyDeployCommands.mjs +4 -8
- package/dist/xy/xyDeployCommands.mjs.map +1 -1
- package/package.json +3 -3
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/bin/xy.mjs
CHANGED
|
@@ -944,8 +944,7 @@ var deploy = () => {
|
|
|
944
944
|
["yarn", "workspaces foreach --all version patch --deferred"],
|
|
945
945
|
["yarn", "xy clean"],
|
|
946
946
|
["yarn", "xy build"],
|
|
947
|
-
["yarn", "version apply --all"]
|
|
948
|
-
["npm", "publish --workspaces"]
|
|
947
|
+
["yarn", "version apply --all"]
|
|
949
948
|
]);
|
|
950
949
|
};
|
|
951
950
|
|
|
@@ -969,8 +968,7 @@ var deployMajor = () => {
|
|
|
969
968
|
["yarn", "workspaces foreach --all version major --deferred"],
|
|
970
969
|
["yarn", "xy clean"],
|
|
971
970
|
["yarn", "xy build"],
|
|
972
|
-
["yarn", "version apply --all"]
|
|
973
|
-
["npm", "publish --workspaces"]
|
|
971
|
+
["yarn", "version apply --all"]
|
|
974
972
|
]);
|
|
975
973
|
};
|
|
976
974
|
|
|
@@ -994,8 +992,7 @@ var deployMinor = () => {
|
|
|
994
992
|
["yarn", "workspaces foreach --all version minor --deferred"],
|
|
995
993
|
["yarn", "xy clean"],
|
|
996
994
|
["yarn", "xy build"],
|
|
997
|
-
["yarn", "version apply --all"]
|
|
998
|
-
["npm", "publish --workspaces"]
|
|
995
|
+
["yarn", "version apply --all"]
|
|
999
996
|
]);
|
|
1000
997
|
};
|
|
1001
998
|
|
|
@@ -1019,8 +1016,7 @@ var deployNext = () => {
|
|
|
1019
1016
|
["yarn", "workspaces foreach --all version minor --deferred"],
|
|
1020
1017
|
["yarn", "xy clean"],
|
|
1021
1018
|
["yarn", "xy build"],
|
|
1022
|
-
["yarn", "version apply --all --prerelease"]
|
|
1023
|
-
["npm", "publish --workspaces"]
|
|
1019
|
+
["yarn", "version apply --all --prerelease"]
|
|
1024
1020
|
]);
|
|
1025
1021
|
};
|
|
1026
1022
|
|