Add autoprefixer workflow (#74)

* Add node_modules in gitignore

* Add autoprefixer workflow
This commit is contained in:
Emruz Hossain 2020-08-21 22:12:34 +06:00 committed by GitHub
parent 18a19d02d1
commit 1735b74f40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 1016 additions and 109 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "toha",
"version": "1.0.0",
"description": "A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.",
"main": "index.js",
"scripts": {
"autoprefixer": "postcss static/assets/css/**.css --use autoprefixer -r"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hossainemruz/toha.git"
},
"author": "Emruz Hossain",
"license": "MIT",
"bugs": {
"url": "https://github.com/hossainemruz/toha/issues"
},
"homepage": "https://github.com/hossainemruz/toha#readme",
"devDependencies": {
"autoprefixer": "^9.8.6",
"postcss-cli": "^7.1.1"
}
}