-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathupdate-bower.js
96 lines (77 loc) · 2.33 KB
/
update-bower.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
var git = require("simple-git"),
fsSync = require("fs-sync"),
del = require("del");
var argv = require("minimist")(process.argv.slice(2));
var sourceDir = __dirname + "/target/next";
var repoDir = __dirname + "/tmp-git";
var bowerJsonTplFile = __dirname + "/bower.json.tpl";
var gitUsername, gitPassword, libVersion;
if(argv.hasOwnProperty("u") && argv.hasOwnProperty("p") && argv.hasOwnProperty("v")) {
gitUsername = argv.u;
gitPassword = argv.p;
libVersion = argv.v;
var remoteOrigin = "https://" +
gitUsername + ":" +
gitPassword +
"@github.com/NeXt-UI/next-bower.git";
//"@github.com/zverevalexei/export-test.git";
git()
// delete & pull down
.then(function(){
// delete old files if exist
console.log("Deleting old files if exist...");
del.sync(repoDir + "**", {force: true});
console.log("Cloning the repo from origin...");
})
.clone(remoteOrigin, repoDir)
.then(function(){
git(repoDir)
// clean & copy in
.then(function(){
console.log("Removing all files except '.git' directory...");
del.sync([
repoDir + "/**",
"!" + repoDir + "/.git",
"!" + repoDir
], {force: true});
console.log("Copying build files for commit...");
fsSync.copy(sourceDir, repoDir);
console.log("Creating bower.json file...");
if(fsSync.exists(bowerJsonTplFile)){
var bowerJsonContent = fsSync.read(bowerJsonTplFile).replace(/{{version}}/gi, libVersion);
fsSync.write(repoDir + "/bower.json", bowerJsonContent);
}
})
// add to git
.then(function(){
console.log("Adding all files to git...");
})
.add('.')
// commit
.then(function(){
console.log("Committing...");
})
.commit("Update NeXt - version " + libVersion)
// add origin
.then(function(){
console.log("Adding remote origin...");
})
.removeRemote("origin")
.addRemote("origin", remoteOrigin)
// push
.then(function(){
console.log("Pushing...");
})
.push("origin", "master")
.then(function(){
console.log("Deleting temporary directory...");
// delete
del.sync(repoDir + "/**", {force: true});
console.log("Done!");
});
});
}
else{
console.error("Please specify username (-u) and password (-p) for Git, as well as the new NeXt version (-v)\n" +
"Example: node update-bower.js -u master -p qwerty123 -v 0.1");
}