7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
return {
|
||
|
publish: {
|
||
|
command: 'npm publish'
|
||
|
}
|
||
|
};
|
||
|
};
|