@leverege/build-tools 2.96.3 → 2.96.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.96.3",
3
+ "version": "2.96.4",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -128,10 +128,11 @@ const deleteSnapshots = async ( { compute, projectId, snapshots } ) => {
128
128
 
129
129
  for ( const s of snapshots ) {
130
130
  const name = s.name
131
+ const tstamp = s.creationTimestamp.replace( 'T', ' ' ).replace( 'Z', '' )
131
132
  if ( !name ) continue
132
133
 
133
134
  try {
134
- log( `- deleting: ${name}` )
135
+ log( `- deleting: ${tstamp} - ${name}` )
135
136
  // eslint-disable-next-line no-await-in-loop
136
137
  await compute.snapshots.delete( {
137
138
  project : projectId,