@clerk/upgrade 0.2.0 → 0.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/dist/scan.js +4 -2
- package/package.json +4 -2
package/dist/scan.js
CHANGED
|
@@ -140,10 +140,12 @@ export default function Scan({
|
|
|
140
140
|
event: 'Clerk Migration Tool_CLI_Breaking Change Found',
|
|
141
141
|
properties: {
|
|
142
142
|
appId: `cmt_${uuid}`,
|
|
143
|
-
title: item.title,
|
|
144
143
|
surface: 'Clerk Migration Tool',
|
|
145
144
|
location: 'CLI',
|
|
146
|
-
|
|
145
|
+
title: item.title,
|
|
146
|
+
instances: item.instances.length,
|
|
147
|
+
fromVersion,
|
|
148
|
+
toVersion
|
|
147
149
|
},
|
|
148
150
|
timestamp: new Date().toISOString()
|
|
149
151
|
};
|
package/package.json
CHANGED