Feature Request: change cli folder to .au
See original GitHub issueCurrent behavior:
aurelia cli creates and operates via project folder aurelia_project
Desired behavior:
create and operate via project folder .au
fallback to aurelia_project
if .au
doesn’t exist
why
less imposing folder name on the project tree.
would be topmost folder name in the project tree.
mimics other tooling’s convention (e.g. .vscode
)
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
[Feature Request] Adding additional directory to the config ...
Feature Request I know there's a --config_dir command line argument, that enables to add an additional directory to the config search path.
Read more >Feature Requests - Audacity Wiki
This is our Feature Requests page where suggestions from users to enhance or add new ... Export to directory from which original .aup...
Read more >File Commands [Cisco Unified Communications Manager ...
This command collects log information by service or feature and duration. file build log service /feature duration ...
Read more >DFS Replication - FAQ | Microsoft Learn
Distributed File System topic in Changes in Functionality from Windows ... To migrate replication of the SYSVOL folder to DFS Replication, ...
Read more >Hardening Microsoft Windows 10 version 21H1 Workstations
A summary of the changes from the previous release of this ... Controlled Folder Access, a security feature of Microsoft Windows 10, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I kinda like this approach but I think currently the
aurelia_project
folder has too much responsibility, so currently it contains generator and aurelia config stuff as well as environmental vars and build tasks.Almost every js project I have worked on before has a build folder and pushes tooling specific vars/config elsewhere, so it may be a compromise to have the
.au
folder for theaurelia.json
andgenerators
folder (as this is just project metadata and not required by a dev) and just put the environments and tasks folders into abuild
folder which is generally the norm for most js related projects. As when I first used CLI I was a bit confused where the generator had put my build script tasks.The only thing I have noticed which makes me hesitant is that the
aurelia.json
is also used by the build (not gulp but theau
CLI) for bundling etc so that kinda borders on doing 2 things, so I think this may need more thought as like mentioned earlier generally.somefolder
implies its just metadata a dev never needs to play with (which should be true for the generators) but a developer may need to change theaurelia.json
file.