Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot process directories having names with dots #586

Open
SimoneMSR opened this issue Dec 5, 2024 · 0 comments
Open

Cannot process directories having names with dots #586

SimoneMSR opened this issue Dec 5, 2024 · 0 comments

Comments

@SimoneMSR
Copy link

SimoneMSR commented Dec 5, 2024

When trying to minify files within a directory whose name has dots, the error EISDIR occurs.

GruntFile I used is

module.exports = function(grunt) {
//configuration
grunt.initConfig({
      uglify: {
          all: {
            files: [{
                expand: true,
                src: ['**/*.js',"!build/**/*"],
                dest: 'build/',
                cwd: './',
            }]
           }
         }
})
    grunt.loadNpmTasks('grunt-contrib-uglify');
   //Register Tasks
   grunt.registerTask('default', ['uglify']);
}

Version used: 5.2.2
Grunt version: 1.6.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant