master
yutent 2024-07-25 16:42:09 +08:00
commit a544f278cd
6 changed files with 97 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
.vscode
node_modules/
dist
*.sublime-project
*.sublime-workspace
package-lock.json
._*
.Spotlight-V100
.Trashes
.DS_Store
.AppleDouble
.LSOverride

10
.prettierrc.yaml Normal file
View File

@ -0,0 +1,10 @@
jsxBracketSameLine: true
jsxSingleQuote: true
semi: false
singleQuote: true
printWidth: 80
useTabs: false
tabWidth: 2
trailingComma: none
bracketSpacing: true
arrowParens: avoid

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

19
Readme.md Normal file
View File

@ -0,0 +1,19 @@
## fite-plugin-autoprefixer
```js
import autoprefixer from 'fite-plugin-autoprefixer'
// fite.config.js
export default {
...,
plugin: [ autoprefixer('chrome 89') ],
...
}
```

19
index.js Normal file
View File

@ -0,0 +1,19 @@
/**
* {}
* @author yutent<yutent.io@gmail.com>
* @date 2024/07/25 16:39:23
*/
import autoprefixer from 'autoprefixer'
import postcss from 'postcss'
export default function (browers = 'chrome 89, safari 13.1') {
return function (ext, data) {
if (ext === 'css') {
return postcss([autoprefixer(browers)])
.process(data, { from: '' })
.then(r => r.css)
}
return data
}
}

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "fite-plugin-autoprefixer",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"autoprefixer": "^10.4.19"
},
"engines": {
"node": ">=16.6.0"
},
"license": "MIT"
}