@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.
Files changed (2) hide show
  1. package/dist/scan.js +4 -2
  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
- instances: item.instances.length
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
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@clerk/upgrade",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
7
- "bin": "dist/cli.js",
7
+ "bin": {
8
+ "clerk-upgrade": "dist/cli.js"
9
+ },
8
10
  "files": [
9
11
  "dist"
10
12
  ],