How Do I Make a Project in my current Directory?
I want to make the proj in
workspaces/DashMate
not like workspaces/DashMate/${ProjName}
8 Replies
Solution
currently not a feature, just create the directory then move the content.
mv projname/* .
or first cd ..
and also What's the difference Between Default Template and complete Template?
the complete template has more stuff
https://github.com/sapphiredev/examples/tree/main/examples/with-typescript-complete (complete)
https://github.com/sapphiredev/examples/tree/main/examples/with-typescript-starter (default)
btw this https://github.com/sapphiredev/examples/tree/main/examples/with-typescript-complete has some type errors,
https://github.com/sapphiredev/examples/blob/main/examples/with-typescript-complete/src/commands/General/command-with-decorators.ts line 39 It needs PermissionResolvable, not string
https://github.com/sapphiredev/examples/blob/main/examples/with-typescript-complete/src/listeners/mentionPrefixOnly.ts line 8 channel can be stageChannel so .send won't be possible in that scenario
please make a PR
thx