在 Gulp 中使用变量作为目标文件名?

Using variables in Gulp for the destination file name?(在 Gulp 中使用变量作为目标文件名?)
本文介绍了在 Gulp 中使用变量作为目标文件名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我是 gulp 的新手,我想知道我想要实现的目标是实际的还是可能的.

I am new to gulp and I am wondering if what I want to achieve is practical or possible.

我的项目结构:

root
|
components
|   |
|   component_1
|   |   styles.scss
|   |   actions.js
|   |   template.html
|   |   ...
|   component_2
|   |   styles.scss
|   |   template.html
|   |   ...
|
public
    |
    assets
         |
         css (dest)
         |    component_1.css
         |    component_2.css
         |    ...
         js (dest)

现在我想要的是 Gulp 将编译后的 css 文件存储在 public/assets 的相应 css 文件夹中,但使用它找到 scss 文件的文件夹的名称.那可能吗?我需要将它传送到插件吗?谢谢!PS我确实意识到我可以通过重命名scss来实现这一点,但这是我想避免的.

Now what I want is that Gulp stores the compiled css files in the according css folder in public/assets but uses the name of folder where it found the scss file. Is that possible? Do I need to pipe that to a plugin? Thanks! PS i do realize I could achieve that by just renaming the scss, but that's what I'd like to avoid.

推荐答案

这不会太难,这取决于你需要多少动态.Gulp 是纯 JS,因此您可以非常轻松地编写自己的函数.您可以使用 gulp-rename 插件 重命名部分或全部文件名保存之前.

It wouldn't be too hard, depending on how much you need it to be dynamic. Gulp is pure JS, so you can very easily write your own functions. you can use the gulp-rename plugin to rename part or all of the file name before saving.

这里有一个粗略的想法可以帮助您入门:

Here's a rough idea to get you started:

var rename = require('gulp-rename'),
    path = require('path'),
    glob = require('glob'); // npm i --save-dev glob    

var components = glob.sync('components/*').map(function(componentDir) {
        return path.basename(componentDir);
    });

components.forEach(function(name) {
    gulp.task(name+'-style', function() {
        return gulp.src('components/'+name+'/styles.scss')
            .pipe(sass()) // etc
            .pipe(rename(name + '.css'))
            .pipe(gulp.dest('public/assets/css'))
    });

    gulp.task(name+'-js', function() {
        // similar idea for JS files
    });

    gulp.task(name+'-build', [name+'-style', name+'-js']);
});

// build all components
gulp.task('build-components', components.map(function(name){ return name+'-build'; }));

现在您将为每个组件创建名为 component_1-buildcomponent_1-stylecomponent_1-js 等的任务.

Now you'll have tasks named component_1-build, component_1-style, component_1-js, etc, for each component.

您还有一个可以构建所有组件的任务.

You also have a task that can build all components.

这篇关于在 Gulp 中使用变量作为目标文件名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I can get a text of all the cells of the table using testcafe(如何使用 testcafe 获取表格中所有单元格的文本)
node_modules is not recognized as an internal or external command(node_modules 未被识别为内部或外部命令)
How can I create conditional test cases using Protractor?(如何使用 Protractor 创建条件测试用例?)
PhantomJS and clicking a form button(PhantomJS 并单击表单按钮)
Clicking #39;OK#39; on alert or confirm dialog through jquery/javascript?(在警报上单击“确定或通过 jquery/javascript 确认对话框?)
QunitJS-Tests don#39;t start: PhantomJS timed out, possibly due to a missing QUnit start() call(QunitJS-Tests 不启动:PhantomJS 超时,可能是由于缺少 QUnit start() 调用)