We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967af73 commit b2bbaa3Copy full SHA for b2bbaa3
build/release.js
@@ -47,10 +47,10 @@ module.exports = function( Release ) {
47
* @param {Function} callback
48
*/
49
generateArtifacts: function( callback ) {
50
- Release.exec( "grunt", "Grunt command failed" );
+ Release.exec( "npx grunt", "Grunt command failed" );
51
Release.exec(
52
- "grunt custom:slim --filename=jquery.slim.js && " +
53
- "grunt remove_map_comment --filename=jquery.slim.js",
+ "npx grunt custom:slim --filename=jquery.slim.js && " +
+ "npx grunt remove_map_comment --filename=jquery.slim.js",
54
"Grunt custom failed"
55
);
56
cdn.makeReleaseCopies( Release );
0 commit comments