0

プロパティ (ANT と同様) を使用して、ファイルのコピー先ディレクトリを指定できますか?grunt-contrib-copyたとえば、次のようにします。

  // Project Configuration
  grunt.initConfig({
    properties: {
        /* Templates Directory for Express.js */
        /* (Destination Directory for hjs files in nanoc_outputdir) */
        express_templates_directory: './templates',

        /* Express public directory for static files */
        /* (Here we will hold static files like *.css and images ) */
        express_public_directory: './public',

        express_css: '<%= properties.express_public_directory %>/stylesheets',

        /* The directory where nanoc outputs our templates */
        nanoc_outputdir: './output'  
     },
     /* ... */
    copy: {
            cptemplates: {
                files: [
                         {expand: true, cwd: '<%= properties.nanoc_outputdir %>/', src:'*.html', dest: '<%= properties.express_templates_directory  %>/'}
        ]
    }
} */
4

1 に答える 1