Skip to content

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

Open
stevesweets wants to merge 1 commit intopopkinj:masterfrom
stevesweets:master
Open

Add force option for deletion - necessary for some git path configs#6
stevesweets wants to merge 1 commit intopopkinj:masterfrom
stevesweets:master

Conversation

@stevesweets
Copy link
Copy Markdown

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