-
-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #806 * prettify custom setting json (#812) * Fix auto upload (#801) * Fix auto upload! * Properly stop watching * Add synchronous functions * Move watcher to a new service * Make a new service for watcher * Add general ignored items setting for chokidar * Use globalCommons's autoUploadService instance * Reset * Add local settings to ignored files * Asynchronously get ignored items * Remove unused import * Use autoUploadService * Use the globalCommonService everywhere Since the autoUploadService is an instance in Commons, using a global Commons instance will allow everything to use the same instance. * Stop spamming with extension paths * Fix to work with async functions * Add global state to ignored files * Add .DS_Store and sync.lock * Start watcher only after downloading has finished * Inform user that auto upload has started * #805 * #820 * #820 * #821 * #805 * #823 * Go back to webpack and fix source maps * Ignore node_modules and some other files (#826)
- Loading branch information
1 parent
34b5bf6
commit 7094de0
Showing
13 changed files
with
222 additions
and
500 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
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "code-settings-sync", | ||
"displayName": "Settings Sync", | ||
"description": "Synchronize Settings, Snippets, Themes, File Icons, Launch, Keybindings, Workspaces and Extensions Across Multiple Machines Using GitHub Gist.", | ||
"version": "3.2.7", | ||
"version": "3.2.8", | ||
"icon": "images/cloud.png", | ||
"publisher": "Shan", | ||
"author": { | ||
|
@@ -46,7 +46,7 @@ | |
"email": "[email protected]" | ||
}, | ||
"engines": { | ||
"vscode": "^1.31.1" | ||
"vscode": "^1.32.3" | ||
}, | ||
"categories": [ | ||
"Other" | ||
|
@@ -153,24 +153,25 @@ | |
}, | ||
"devDependencies": { | ||
"@types/chai": "4.1.7", | ||
"@types/chokidar": "^2.1.3", | ||
"@types/fs-extra": "^5.0.5", | ||
"@types/mocha": "^5.2.6", | ||
"@types/node": "^11.10.4", | ||
"@types/node": "^11.13.0", | ||
"chai": "^4.2.0", | ||
"clean-webpack-plugin": "^2.0.0", | ||
"mocha": "^6.0.0", | ||
"clean-webpack-plugin": "^2.0.1", | ||
"mocha": "^6.0.2", | ||
"prettier": "^1.16.4", | ||
"ts-loader": "^5.3.3", | ||
"tslint": "^5.13.1", | ||
"tslint": "^5.15.0", | ||
"tslint-plugin-prettier": "^2.0.1", | ||
"typescript": "^3.3.3333", | ||
"vscode": "^1.1.30", | ||
"typescript": "^3.4.1", | ||
"vscode": "^1.1.33", | ||
"webpack": "^4.29.6", | ||
"webpack-cli": "^3.2.3" | ||
"webpack-cli": "^3.3.0" | ||
}, | ||
"dependencies": { | ||
"@octokit/rest": "^16.16.4", | ||
"adm-zip": "^0.4.13", | ||
"chokidar": "^2.1.5", | ||
"fs-extra": "^7.0.1", | ||
"https-proxy-agent": "^2.2.1", | ||
"lockfile": "^1.0.4", | ||
|
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
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
Oops, something went wrong.