forked from jquery/sizzle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ref jquerygh-239 Ref jquerygh-308
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* eslint-env node */ | ||
module.exports = function( Release ) { | ||
|
||
var files = [ | ||
"dist/sizzle.js", | ||
"dist/sizzle.min.js", | ||
"dist/sizzle.min.map" | ||
]; | ||
|
||
Release.define( { | ||
npmPublish: true, | ||
issueTracker: "github", | ||
|
||
generateArtifacts: function( done ) { | ||
Release.exec( "grunt", "Grunt command failed" ); | ||
done( files ); | ||
}, | ||
|
||
// TODO Add Sizzle to the CDN, or add public opt-out interfaces to jquery-release | ||
_copyCdnArtifacts: function() { | ||
console.warn( "Skipping CDN artifact copy." ); | ||
}, | ||
_pushToCdn: function() { | ||
console.warn( "Skipping CDN push." ); | ||
} | ||
} ); | ||
|
||
}; |