You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where both module1.json and module2.json start like this:
{
"default": {
...
}
}
Sometimes the wrong json file will be imported, which obviously breaks the compilation.
My ideal setup would be for all my json files to be named config.json and begin with the default key, but as it stands I have to have unique names for both the file name and opening key.
The text was updated successfully, but these errors were encountered:
Potentially related to: #21
I've noticed some issues with the wrong file being read/imported if the project has multiple files with the same name, like this:
[module1/
----[config.json
----[module1.scss
[module1/
----[config.json
----[module2.scss
I've also noticed issues when using multiple files with different names when the contents begin with the same first key, like this:
[module1/
----[module1.json
----[module1.scss
[module1/
----[module2.json
----[module2.scss
Where both module1.json and module2.json start like this:
Sometimes the wrong json file will be imported, which obviously breaks the compilation.
My ideal setup would be for all my json files to be named
config.json
and begin with thedefault
key, but as it stands I have to have unique names for both the file name and opening key.The text was updated successfully, but these errors were encountered: