Skip to content

Commit 0535477

Browse files
committed
chore: fix examples path
1 parent 1506538 commit 0535477

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.vscode/launch.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@
33
"configurations": [
44
{
55
"name": "Run example on main.dart",
6-
"program": "${workspaceFolder}/example/lib/main.dart",
6+
"program": "${workspaceFolder}/examples/example/lib/main.dart",
77
"request": "launch",
88
"type": "dart",
99
"flutterMode": "debug",
10-
"cwd": "example/"
10+
"cwd": "examples/example/"
1111
},
1212
{
1313
"name": "Run on build_runner",
14-
"program": "${workspaceFolder}/example/.dart_tool/build/entrypoint/build.dart",
14+
"program": "${workspaceFolder}/examples/example/.dart_tool/build/entrypoint/build.dart",
1515
"request": "launch",
1616
"type": "dart",
1717
"args": [
1818
"build"
1919
],
20-
"cwd": "example/"
20+
"cwd": "examples/example/"
2121
},
2222
{
2323
"name": "Run on flutter_gen_command",
2424
"program": "${workspaceFolder}/packages/command/bin/flutter_gen_command.dart",
2525
"request": "launch",
2626
"type": "dart",
27-
"cwd": "example/"
27+
"cwd": "examples/example/"
2828
}
2929
]
3030
}

0 commit comments

Comments
 (0)