user686483
user686483

Reputation: 1506

Yeoman, grunt build - keeping original file names?

I'm using the default gruntfile that is included when I scaffold out a new project.

copy: {
        dist: {
            files: [{
                expand: true,
                dot: false,
                cwd: '<%= yeoman.app %>',
                dest: '<%= yeoman.dist %>',
                src: ['myfolder/css/**/*',


                ]
            },
        }
    }

I'm wanting to keep the original file names when I run the build as I keep getting b914da89.somefile.css.

What file do I need to modify to do this?

Upvotes: 1

Views: 227

Answers (1)

Jason Aller
Jason Aller

Reputation: 3654

Look in Gruntfile.js to see where you are calling the rev task: grunt-rev. Removing that call should stop the modification of your file names/

Upvotes: 1

Related Questions