This file contains hidden or 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
15:15 <@isaacs> something i've noticed: .0 is effectively "preview release" | |
15:15 <@isaacs> i think it's ok to make minor API changes in .1 | |
15:15 <@isaacs> but we should never tell anyone that. | |
15:15 <@isaacs> :) | |
15:16 <@isaacs> you can call 0.9.99 a preview release, but still no one will install it. | |
15:16 <@isaacs> until it has the actual "stable" flag on it, they're too scared. | |
15:16 <@isaacs> so we put that flag on it just a little bit before it's actually true. |
This file contains hidden or 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
STYLES = $(wildcard stylesheets/*.styl) | |
CSS = $(STYLES:.styl=.css) | |
COMPRESSED = $(CSS:.css=.min.css) | |
all: $(CSS) | |
style.min.css: $(COMPRESSED) | |
@cat $^ > $@ |
NewerOlder