Skip to content

Commit

Permalink
Merge branch 'release/0.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
firede committed Sep 24, 2014
2 parents cd13de7 + c2dc856 commit 97e9707
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

0.4.3 / 2014-09-24
==================

* 升级开发依赖并测试,将 `stylus` 升级至 `0.49.0`(性能略有提升)

0.4.2 / 2014-08-05
==================

Expand Down
6 changes: 5 additions & 1 deletion demo/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ function compile(str, filePath) {
}

function prefixer(err, css) {
return ap('Android >= 2.3', 'iOS >= 5', 'ExplorerMobile >= 10').process(css).css;
return ap(
{
browsers: ['Android >= 2.3', 'iOS >= 5', 'ExplorerMobile >= 10']
}
).process(css).css;
}

app.set('views', path.join(__dirname, '/views'));
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "rider",
"version": "0.4.2",
"version": "0.4.3",
"description": "Rider is a CSS library to focus on Mobile Web, build on top of Stylus.",
"maintainers": [
{ "name": "Firede", "email": "firede@firede.us" }
],
"devDependencies": {
"autoprefixer": "~2.2.0",
"stylus": "~0.47.3",
"express": "~4.7.4",
"autoprefixer": "~3.1.0",
"stylus": "~0.49.0",
"express": "~4.9.4",
"ejs": "~1.0.0",
"mocha": "~1.21.3",
"mocha": "~1.21.4",
"should": "~4.0.4"
},
"scripts": {
Expand Down

0 comments on commit 97e9707

Please sign in to comment.