Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
updates dependencies (#27)
Browse files Browse the repository at this point in the history
* updates dependencies

* updated eeeeerrrrything
  • Loading branch information
stevebosworth authored and Thomas Kelly committed Jul 28, 2017
1 parent 600d882 commit caa21f3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 32 deletions.
43 changes: 21 additions & 22 deletions packages/slate-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,41 @@
"license": "MIT",
"author": "Shopify Inc.",
"dependencies": {
"@shopify/themekit": "0.5.1",
"bluebird": "3.4.0",
"browser-sync": "2.18.2",
"chokidar": "1.5.2",
"cross-spawn": "5.0.0",
"debug": "2.2.0",
"del": "2.2.0",
"@shopify/themekit": "0.5.3",
"bluebird": "3.4.6",
"chokidar": "1.6.1",
"cross-spawn": "5.0.1",
"debug": "2.3.3",
"del": "2.2.2",
"find-root": "1.0.0",
"gulp": "3.9.1",
"gulp-cheerio": "0.6.2",
"gulp-cssimport": "3.0.2",
"gulp-cssimport": "5.0.0",
"gulp-ext-replace": "0.3.0",
"gulp-include": "2.3.1",
"gulp-plumber": "1.1.0",
"gulp-size": "2.1.0",
"gulp-svgmin": "1.2.2",
"gulp-svgmin": "1.2.3",
"gulp-uglify": "2.0.0",
"gulp-util": "3.0.7",
"gulp-zip": "3.2.0",
"js-yaml": "3.6.1",
"lodash": "4.13.1",
"js-yaml": "3.7.0",
"lodash": "4.17.2",
"open": "0.0.5",
"require-dir": "0.3.0",
"run-sequence": "1.2.1",
"require-dir": "0.3.1",
"run-sequence": "1.2.2",
"vinyl-paths": "2.1.0",
"yargs": "4.7.1"
"yargs": "6.4.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-plugin-add-shopify-header": "^1.0.0",
"babel-preset-shopify": "^13.0.0",
"babel-register": "^6.11.6",
"eslint": "^3.3.1",
"eslint-plugin-shopify": "^14.0.0"
"babel": "6.5.2",
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-plugin-add-shopify-header": "1.0.6",
"babel-preset-shopify": "15.0.1",
"babel-register": "6.18.0",
"eslint": "3.10.2",
"eslint-plugin-shopify": "15.1.0"
},
"scripts": {
"clean": "rm -rf lib/",
Expand Down
20 changes: 10 additions & 10 deletions packages/slate-tools/src/tasks/watchers.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ let activeDeploy = false;
function checkDeployStatus() {
if (activeDeploy) {
return;
} else {
const environment = config.environment.split(/\s*,\s*|\s+/)[0];
}

const environment = config.environment.split(/\s*,\s*|\s+/)[0];

messages.deployTo(environment);
messages.deployTo(environment);

if (cache.change.length) {
deploy('upload', cache.change, environment);
cache.change = [];
} else if (cache.unlink.length) {
deploy('remove', cache.unlink, environment);
cache.unlink = [];
}
if (cache.change.length) {
deploy('upload', cache.change, environment);
cache.change = [];
} else if (cache.unlink.length) {
deploy('remove', cache.unlink, environment);
cache.unlink = [];
}
}

Expand Down

0 comments on commit caa21f3

Please sign in to comment.