Socket
Book a DemoInstallSign in
Socket

grunt-debug-files

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-debug-files

Debug files run through grunt

Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
1
-75%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-debug-files Build Status

Debug files run through grunt

Useful for checking what files matched the glob or make sure all files exist.

Install

$ npm install --save-dev grunt-debug-files

Usage

Just replace the task name of the task you want to debug with debugFiles or add a new task with the same files object.

 require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

 grunt.initConfig({
-	existingTask: {
+	debugFiles: {
 		dist: {
 			files: {
 				'dist/main.js': 'src/main.js'
 			}
 		}
 	}
 });

-grunt.registerTask('default', ['existingTask']);
+grunt.registerTask('default', ['debugFiles']);

License

MIT © Sindre Sorhus

Keywords

gruntplugin

FAQs

Package last updated on 06 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts