We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ec1dd commit 548d37bCopy full SHA for 548d37b
build/release/release.js
@@ -43,6 +43,8 @@ walk([
43
section( "updating trac" ),
44
updateTrac,
45
confirm
46
+
47
+ // TODO: upload release zip to GitHub
48
]);
49
50
@@ -140,17 +142,14 @@ function buildRelease() {
140
142
echo();
141
143
144
echo( "Building release..." );
145
+ // TODO: Build themes
146
if ( exec( "grunt release" ).code !== 0 ) {
147
abort( "Error building release." );
148
}
149
150
- // TODO: Build themes
-
- // TODO: Move build out of dist/
151
echo( "Committing release artifacts..." );
152
git( "add *.jquery.json", "Error adding manifest files to git." );
153
- // TODO: Add built files
154
git( "commit -am 'Tagging the " + newVersion + " release.'",
155
"Error committing release changes." );
156
0 commit comments