@danieljaurellmevorach/javascript-recipe-starter 1.0.0 → 1.0.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExecutionContext, Recipe, TreeVisitor } from '@openrewrite/rewrite';
|
|
2
2
|
export declare class MigrateFictionalLoggerV2 extends Recipe {
|
|
3
|
-
readonly name = "com.
|
|
3
|
+
readonly name = "com.yourorg.UpdateFictionalLogger";
|
|
4
4
|
readonly displayName = "Migration Fictional Logger to V2";
|
|
5
5
|
readonly description = "Rename logging functional definition, calls.";
|
|
6
6
|
editor(): Promise<TreeVisitor<any, ExecutionContext>>;
|
|
@@ -15,7 +15,7 @@ const javascript_1 = require("@openrewrite/rewrite/javascript");
|
|
|
15
15
|
class MigrateFictionalLoggerV2 extends rewrite_1.Recipe {
|
|
16
16
|
constructor() {
|
|
17
17
|
super(...arguments);
|
|
18
|
-
this.name = "com.
|
|
18
|
+
this.name = "com.yourorg.UpdateFictionalLogger";
|
|
19
19
|
this.displayName = "Migration Fictional Logger to V2";
|
|
20
20
|
this.description = "Rename logging functional definition, calls.";
|
|
21
21
|
}
|
package/package.json
CHANGED