We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec3c04a commit 008e0e7Copy full SHA for 008e0e7
1 file changed
bin/cli.js
@@ -3,10 +3,12 @@
3
4
const gatherTelemetry = require("../lib/gather-telemetry");
5
6
-gatherTelemetry(process.argv[2]);
+(async () => {
7
+ await gatherTelemetry(process.argv[2]);
8
-require("codemod-cli").runTransform(
9
- __dirname,
10
- "ember-object",
11
- process.argv.slice(2) /* paths or globs */
12
-);
+ require("codemod-cli").runTransform(
+ __dirname,
+ "ember-object",
+ process.argv.slice(2) /* paths or globs */
13
+ );
14
+})();
0 commit comments