Skip to content

Commit d934d89

Browse files
committed
chore: reference running scripts via npm instead of yarn
1 parent 6c6edc4 commit d934d89

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/configs/angular.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS CODE WAS AUTOMATICALLY GENERATED
22
// DO NOT EDIT THIS CODE BY HAND
3-
// YOU CAN REGENERATE IT USING yarn generate:configs
3+
// YOU CAN REGENERATE IT USING npm run generate:configs
44

55
export = {
66
plugins: ['testing-library'],

lib/configs/dom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS CODE WAS AUTOMATICALLY GENERATED
22
// DO NOT EDIT THIS CODE BY HAND
3-
// YOU CAN REGENERATE IT USING yarn generate:configs
3+
// YOU CAN REGENERATE IT USING npm run generate:configs
44

55
export = {
66
plugins: ['testing-library'],

lib/configs/react.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS CODE WAS AUTOMATICALLY GENERATED
22
// DO NOT EDIT THIS CODE BY HAND
3-
// YOU CAN REGENERATE IT USING yarn generate:configs
3+
// YOU CAN REGENERATE IT USING npm run generate:configs
44

55
export = {
66
plugins: ['testing-library'],

lib/configs/vue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS CODE WAS AUTOMATICALLY GENERATED
22
// DO NOT EDIT THIS CODE BY HAND
3-
// YOU CAN REGENERATE IT USING yarn generate:configs
3+
// YOU CAN REGENERATE IT USING npm run generate:configs
44

55
export = {
66
plugins: ['testing-library'],

tools/generate-configs/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const addAutoGeneratedComment = (code: string) =>
1212
[
1313
'// THIS CODE WAS AUTOMATICALLY GENERATED',
1414
'// DO NOT EDIT THIS CODE BY HAND',
15-
'// YOU CAN REGENERATE IT USING yarn generate:configs',
15+
'// YOU CAN REGENERATE IT USING npm run generate:configs',
1616
'',
1717
code,
1818
].join('\n');

0 commit comments

Comments
 (0)