Permalink
15 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -13,7 +13,7 @@ | ||
"bower.json" | ||
], | ||
"dependencies": { | ||
"sizzle": "1.10.15" | ||
"sizzle": "1.10.16" | ||
}, | ||
"devDependencies": { | ||
"requirejs": "~2.1.8", | ||
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You didn't update it, see
bowercopy
task.cc @timmywil
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Been here, done this but with sinon timers. I don't know if the process is inherently error prone or we just need some better instructions than the commit message at f9ad13c .
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@timmywil well, i think "i told you so" would be in order :-)
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It must have seemed like a good idea at the time😸 Worse things happened to me with submodules but I've blocked them out.
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I talked with @gibson042 over IRC when the workflow changed. I think he just had a brain fart.
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@markelog I reciprocate your "I told you so" with a "We commit dependencies now. Deal with it."
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about putting the commit message from f9ad13c into a comment before the
bower
alias definition in Gruntfile?9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good to me. Should we put it in the README as well?
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could but README is not only for commiters and other developers don't really have to care about this issue.
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, that's pretty much why I haven't put it somewhere. Ok, in the Gruntfile seems like a good place.
9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aargh! @timmywil is right, but this just doesn't seem workable unless the default grunt task detects the need to invoke
bower
and does so automatically.9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What use case would be for that? How you usually update Sizzle? Do you update
bower.json
then rungrunt default
, or just update and commit it without executing any command?9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bower update
;grunt
)9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So basically, now you replace
bower update
withgrunt bower
plus commit newly updated dependency, i guess detect changes ofbower.json
file would be easy enough to do but in that case you should have to remember to make commit aftergrunt default
command.9ac88de
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The universe always promises a bigger idiot. Today, that role is mine.