Skip to content

Commit

Permalink
dev: Add peacock VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jhwohlgemuth committed Aug 20, 2019
1 parent 8a5a951 commit 685d669
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 23 deletions.
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#7f40bf",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#c78f58",
"activityBarBadge.foreground": "#15202b",
"titleBar.activeBackground": "#663399",
"titleBar.inactiveBackground": "#66339999",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveForeground": "#e7e7e799",
"statusBar.background": "#663399",
"statusBarItem.hoverBackground": "#7f40bf",
"statusBar.foreground": "#e7e7e7"
},
"peacock.color": "#639"
}
6 changes: 1 addition & 5 deletions src/commands/add-browsersync.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import {
PackageJsonEditor,
install,
uninstall
} from '../utils';
import {PackageJsonEditor, install, uninstall} from '../utils';
import {allDoExist, someDoExistSync} from '../utils/common';

const BROWSERSYNC_DEPENDENCIES = [
Expand Down
7 changes: 1 addition & 6 deletions src/commands/add-parcel.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import {
PackageJsonEditor,
PurgecssConfigEditor,
install,
uninstall
} from '../utils';
import {PackageJsonEditor, PurgecssConfigEditor, install, uninstall} from '../utils';
import {allDoExist, allDoExistSync} from '../utils/common';

const DISABLED = () => false;
Expand Down
7 changes: 1 addition & 6 deletions src/commands/add-rollup.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import {join} from 'path';
import {
PackageJsonEditor,
RollupConfigEditor,
install,
uninstall
} from '../utils';
import {PackageJsonEditor, RollupConfigEditor, install, uninstall} from '../utils';
import {allDoExist, allDoExistSync, allDoNotExist} from '../utils/common';

const DEPLOY_SCRIPTS = {
Expand Down
7 changes: 1 addition & 6 deletions src/commands/add-webpack.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import {join} from 'path';
import {
PackageJsonEditor,
WebpackConfigEditor,
install,
uninstall
} from '../utils';
import {PackageJsonEditor, WebpackConfigEditor, install, uninstall} from '../utils';
import {allDoExist, allDoExistSync, allDoNotExist} from '../utils/common';

const DEPLOY_SCRIPTS = {
Expand Down

0 comments on commit 685d669

Please sign in to comment.