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

Add force option for deletion - necessary for some git path configs #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

stevesweets
Copy link

When using alternative structures for grunt / node_modules, you'll find that you're unable to delete files out of the current path, bit annoying.

Super easy fix though.

Works globally...

insert: {
    options: {
        force: true,
    },
    main: {
        src: 'something',
        dest: '../file_not_in_dir',
        match: '<!-- insert-here -->',
    }
},

.. and task-specific:

insert: {
    main: {
        src: 'something',
        dest: '../file_not_in_dir',
        match: '<!-- insert-here -->',
        options: {
            force: true,
        },
    }
},

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

Successfully merging this pull request may close these issues.

1 participant