Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kimroen committed Jun 17, 2014
0 parents commit d5a7aed
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
13 changes: 13 additions & 0 deletions README.md
@@ -0,0 +1,13 @@
# ember-cli-autoprefixer
This addon runs your compiled styles through `autoprefixer`.

## Installation/usage
From within your Ember CLI application (must be > 0.0.34), run the
following:

```
npm install --save-dev ember-cli-autoprefixer
```

## References
- [broccoli-autoprefixer](https://github.com/sindresorhus/broccoli-autoprefixer)
17 changes: 17 additions & 0 deletions package.json
@@ -0,0 +1,17 @@
{
"name": "ember-cli-autoprefixer",
"version": "0.0.1",
"description": "Process styles in an ember-cli application using Autoprefixer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ember-cli-addon"
],
"author": "Kim Røen",
"license": "MIT",
"dependencies": {
"broccoli-autoprefixer": "~0.2.0"
}
}

0 comments on commit d5a7aed

Please sign in to comment.