Skip to content

Commit f45be95

Browse files
committed
refactor package.json
1 parent e74fdac commit f45be95

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

package.json

+5-14
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "zaggino.brackets-git",
3-
43
"title": "Brackets Git",
4+
"version": "0.14.20",
5+
"engines": { "brackets": ">=1.2.0" },
56
"description": "Integration of Git into Brackets",
6-
"keywords": ["git", "version-control", "source-control"],
7-
"version": "0.14.19",
8-
9-
"license": "MIT",
7+
"keywords": ["brackets-extension", "git", "version-control", "source-control"],
108
"homepage": "https://github.com/zaggino/brackets-git",
9+
"bugs": "https://github.com/zaggino/brackets-git/issues",
10+
"license": "MIT",
1111
"author": {
1212
"name": "Martin Zagora",
1313
"email": "[email protected]",
@@ -17,14 +17,6 @@
1717
"type": "git",
1818
"url": "https://github.com/zaggino/brackets-git.git"
1919
},
20-
"bugs": {
21-
"url": "https://github.com/zaggino/brackets-git/issues",
22-
"email": "[email protected]"
23-
},
24-
25-
"engines": {
26-
"brackets": ">=1.1.0"
27-
},
2820
"scripts": {
2921
"test": "grunt test"
3022
},
@@ -40,7 +32,6 @@
4032
"grunt-zip": "latest",
4133
"grunt-lineending": "latest"
4234
},
43-
4435
"i18n": ["en", "en-gb", "de", "fr", "it", "pt-br", "zh-cn"],
4536
"package-i18n": {
4637
"de": {

src/Utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ define(function (require, exports, module) {
502502
var notifyProgress = function () {
503503
var t = (new Date()).getTime() - startTime;
504504
notificationDefer.progress(t + "ms - " + Strings.CLEAN_FILE_END + ": " + fileObj.file);
505-
}
505+
};
506506
if (stageChanges) {
507507
return Git.stage(fileObj.file).then(notifyProgress);
508508
} else {

0 commit comments

Comments
 (0)