Skip to content

spatools/grunt-msdeploypack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-msdeploypack NPM version

Grunt MS Deploy packager - Create MS Deploy compatible packages in pure node.js

Getting Started

Install this grunt plugin next to your project's gruntfile with: npm install grunt-msdeploypack --save-dev

Then add this line to your project's Gruntfile.js :

grunt.loadNpmTasks('grunt-msdeploypack');

Then specify your config:

grunt.initConfig({

    msdeploypack: {
        dist: {
            src: './',
            options: {
                package: "app.zip"
            }
        }
    }
    
});

To publish another directory

grunt.initConfig({

    msdeploypack: {
        dist: {
            files: [{
                expand: true,
                cwd: "<%= paths.build %>",
                src: "**/*.*",
                dest: "./"
            }],
            options: {
                package: "<%= paths.build %>/app.zip"
            }
        }
    }
    
});

Release History

  • 0.1.0 Initial Release

About

Grunt MS Deploy packager - Create MS Deploy compatible packages

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors