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
sample bower.json in this repo - name is not slug style
{
"name": "Part-002",
...
... contents omitted
}
The name of the package as stored in the registry.
1. Must be unique.
2. Should be slug style for simplicity, consistency and compatibility. Example: unicorn-cake
3. Lowercase, a-z, can contain digits, 0-9, can contain dash or dot but not start/end with them.
4. Consecutive dashes or dots not allowed.
5. 50 characters or less.
A warning will be generated when bower install is run - bower/bower#2242
For newbies - this is confusing because - during first run of bower install they ignore the warning as it gets buried in install log. Subsequent bower install they will see the warning statement alone as dependencies are already installed. Many confuse this warning with error.
The text was updated successfully, but these errors were encountered:
Hi Geertjan,
I have noticed that bower.json files in this repo don't adhere to bower.json specification - https://github.com/bower/spec/blob/master/json.md
A warning will be generated when bower install is run - bower/bower#2242
For newbies - this is confusing because - during first run of
bower install
they ignore the warning as it gets buried in install log. Subsequentbower install
they will see the warning statement alone as dependencies are already installed. Many confuse this warning with error.The text was updated successfully, but these errors were encountered: