有没有办法在没有 gulp 或 grunt 的情况下执行 postCSS 处理。仅在maven的帮助下?
Are there ways to perform postCSS processing withouth gulp or grunt. Only with help of maven?
我想借助 postCSS 在我的项目中执行后处理。
由于我是前端新手,所以我只阅读了通过前端构建系统(grunt 或 gulp)执行它的方法。
但也许只能使用 maven 进行后处理的方法?
您可以通过命令行使用postcss-cli到运行它。
命令的用法非常简单。
postcss [options] [-o output-file|-d output-directory] [input-file]
此外,如果您将 npm
与 package.json
文件一起使用,我建议您添加 run-script
:
{
"name": "my-app",
"script": {
"css": "postcss your options -go here"
},
"dependencies": {
"postcss":"^4.1.13"
}
}
因此,您可以简单地从 maven/CLI 运行 npm run css
,而不必担心为您的命令添加前缀 node_modules/bin
并在 maven 中拥有您的选项。
我想借助 postCSS 在我的项目中执行后处理。 由于我是前端新手,所以我只阅读了通过前端构建系统(grunt 或 gulp)执行它的方法。 但也许只能使用 maven 进行后处理的方法?
您可以通过命令行使用postcss-cli到运行它。
命令的用法非常简单。
postcss [options] [-o output-file|-d output-directory] [input-file]
此外,如果您将 npm
与 package.json
文件一起使用,我建议您添加 run-script
:
{
"name": "my-app",
"script": {
"css": "postcss your options -go here"
},
"dependencies": {
"postcss":"^4.1.13"
}
}
因此,您可以简单地从 maven/CLI 运行 npm run css
,而不必担心为您的命令添加前缀 node_modules/bin
并在 maven 中拥有您的选项。