mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 23:46:14 -04:00
34 lines
420 B
JavaScript
34 lines
420 B
JavaScript
// A script to Release Etherpad.
|
|
|
|
var etherRelease = {
|
|
init: function(){
|
|
// promptUser
|
|
promptUser(function(){
|
|
package.update(version){
|
|
|
|
|
|
}
|
|
});
|
|
},
|
|
versionNumber: function(){
|
|
get: function(){
|
|
|
|
}
|
|
},
|
|
|
|
|
|
versionNumber.get: function(){
|
|
|
|
|
|
},
|
|
|
|
/* Continuous integration */
|
|
ci: function(){
|
|
hasPassed = function(){
|
|
// TODO
|
|
return true;
|
|
}
|
|
},
|
|
|
|
|
|
}
|