-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
📦 Update dev dependencies #9452
Merged
kball
merged 17 commits into
foundation:develop
from
ncoden:chore/update-dev-dependencies
Dec 7, 2016
Merged
📦 Update dev dependencies #9452
kball
merged 17 commits into
foundation:develop
from
ncoden:chore/update-dev-dependencies
Dec 7, 2016
Conversation
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
7ccd6ba
to
662932b
Compare
Closed
4776363
to
fb33e01
Compare
fb33e01
to
0447a62
Compare
Use `autoprefixer` for postcss (https://www.npmjs.com/package/autoprefixer) instead of `gulp-autoprefixer`. Changes: - Use postcss and autoprefixer in the gulp sass tasks - By using `autoprefixer` directly, `autoprefixer` version is updated from `5.0` to the latest version `6.5.3`. Changes in the CSS: - Improve the `transition: transform…` and `transition: box-shadow…` support Full diff of `foundation.css`: https://www.diffchecker.com/iMxTO2UH
Update `gulp-eslint` from `^2.0.0` (currently `v2.1.0`) to `^3.0.1` and remove `babel-eslint` which is no longer necessary. Changes: - Update eslint from `^2.13.1` to `3.11.1` - Update the `.eslintrc` config file. There is no relevant package change. See http://eslint.org/docs/user-guide/migrating-to-3.0.0
Update `gulp-filter` from `^3.0.1` (currently `v3.0.1`) to `^4.0.0`. This version fix a path bug. See sindresorhus/gulp-filter#59
Update `gulp-prompt` from `^0.1.2` (currently `v0.1.2`) to `^0.2.0`. Changelog: update dependencies.
Update `gulp-uglify` from `^1.1.0` (currently `v1.5.4`) to `2.0.0`. See: https://github.com/terinjokes/gulp-uglify/releases/tag/v2.0.0
Update `inquirer` from `^0.11.4` (currently `v0.11.4`) to `^2.0.0`. Changes: Use promise in `/gulp/tasks/deploy.js`. See: - https://github.com/SBoudrias/Inquirer.js/releases/tag/v1.0.0 (breaking change) - https://github.com/SBoudrias/Inquirer.js/releases/tag/v2.0.0 (latest version)
Update `mocha` from `^2.3.3` (currently `v2.5.3`) to `^3.2.0`. No relevant package changes. Essentially bug fixes. See: - mochajs/mocha#2350 (`v3.0.0-0` release) - https://github.com/mochajs/mocha/releases/tag/v3.2.0 (latest release)
Update `vinyl` from `^1.1.1` (currently `v1.2.0`) to `2.0.1`. No relevant package changes. See: https://github.com/gulpjs/vinyl/releases/tag/v2.0.0 Other changes: - Use `Vinyl` variable name instead of `File`
Update `yargs` from `^4.2.0` (currently `v4.8.1`) to `^6.5.0`. No relevant package changes. See: https://github.com/yargs/yargs/releases Other changes: - Remove duplicated yarg import in `gulp/tasks/customizer.js`
Use the latest NPM version `^1.0.1` instead of the GitHub repo for corejs-typeahead. There is no version change.
Unpin `gulp-rsync` from `0.0.5` and update it to `^0.0.7`. No relevant package changes.
Unpin `parker` from `0.0.9` and update it to `^1.0.0-alpha.0`. Relevant changelog: - New Specificity Metrics - New declarations per rule metric - New z-index metric
Unpin `gulp-sourcemaps` from `1.6.0` and update it to `^2.2.1`. This version was pinned because of a bug introduced in `v1.7.0` (PR foundation#153, issue foundation#230). The bug was resolved in `v1.7.2` (PR foundation#235) See: - gulp-sourcemaps/gulp-sourcemaps#230 - gulp-sourcemaps/gulp-sourcemaps#153 - gulp-sourcemaps/gulp-sourcemaps#235
Unpin `gulp-cache-bust` from `1.0.2` to `~1.0.2`, allowing minor changes only. A new version `v1.1.0` has been released, but require node `>=4.4.5`. The current `foundation-sites` node version is `>=4.2.0`.
0447a62
to
cf766f0
Compare
ncoden
added a commit
to ncoden/foundation-sites
that referenced
this pull request
Dec 7, 2016
Fix wrong `inquirer` version introduced in: PR: foundation#9452. Commit: 5eed50b Message: “Update `inquirer` from `^0.11.4` (currently `v0.11.4`) to `^2.0.0`.”
ncoden
added a commit
to ncoden/foundation-sites
that referenced
this pull request
Dec 7, 2016
Update Yarn lock file (`yarn.lock`) after dev dependency has been updated in foundation#9452.
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🚀 Update dev dependencies
List of outdated dependencies: https://david-dm.org/zurb/foundation-sites?type=dev
Checked for each dependency:
📦 Autoprefixer (5.0 -> 6.5.3)
v6.5.3
(latest version) instead of gulp-autoprefixerv2.3.1
for autoprefixerv5.0
.Relevant package changes: Improve the
transition: transform…
andtransition: box-shadow…
support. (See the full diff)📦 Eslint (2.13.1 -> 3.11.1)
gulp-eslint
from^2.0.0
(currentlyv2.1.0
) to^3.0.1
and removebabel-eslint
which is no longer necessary. eslint is updated fromv2.13.1
tov3.11.1
..eslintrc
config file.See: http://eslint.org/docs/user-guide/migrating-to-3.0.0
📦 Gulp-filter (3.0.1 -> 4.0.0)
gulp-filter
from^3.0.1
(currentlyv3.0.1
) to^4.0.0
.This version fix a path bug. See Fixed code to use the correct relative path wrt the current working directory. sindresorhus/gulp-filter#59
📦 Gulp-mocha ❌
Remove unused package.
📦 Gulp-prompt (0.1.2 -> 0.2.0)
gulp-prompt
from^0.1.2
(currentlyv0.1.2
) to^0.2.0
.Relevant package changes: update dependencies.
📦 Gulp-uglify (1.1.0 -> 2.0.0)
gulp-uglify
from^1.1.0
(currentlyv1.5.4
) to2.0.0
.See:
2.0.0
changelog📦 Inquirer (0.11.4 -> 2.0.0)
inquirer
from^0.11.4
(currentlyv0.11.4
) to^2.0.0
./gulp/tasks/deploy.js
.See:
v1.0.0
changelog (breaking change),v2.0.0
changelog📦 Mocha (2.3.3 -> 3.2.0)
mocha
from^2.3.3
(currentlyv2.5.3
) to^3.2.0
.See:
v3.0.0-0
changelog,v3.2.0
changelog📦 Vynil (1.1.1 -> 2.0.1)
vinyl
from^1.1.1
(currentlyv1.2.0
) to2.0.1
. See:v2.0.0
changelogVinyl
variable name instead ofFile
📦 Yargs (4.2.0 -> 6.5.0)
yargs
from^4.2.0
(currentlyv4.8.1
) to^6.5.0
. See: Changeloggulp/tasks/customizer.js
📦 Corejs-typeahead (github -> npm)
^1.0.1
instead of the GitHub repo for corejs-typeahead. There is no version change.📦 Gulp-rsync (0.0.5📌 -> 0.0.7)
gulp-rsync
from0.0.5
and update it to^0.0.7
.📦 Parker (0.0.9📌 -> 1.0.0-alpha.0)
parker
from0.0.9
and update it to^1.0.0-alpha.0
.Relevant package changes:
📦 Gulp-sourcemaps (1.6.0📌 -> 2.2.1)
gulp-sourcemaps
from1.6.0
and update it to^2.2.1
.This version was pinned because of a bug introduced in
v1.7.0
(gulp-sourcemaps/gulp-sourcemaps#153, gulp-sourcemaps/gulp-sourcemaps#230). The bug was resolved inv1.7.2
(gulp-sourcemaps/gulp-sourcemaps#235)📦 Gulp-cache-bust (1.0.2📌 -> 1.0.2)
gulp-cache-bust
from1.0.2
to~1.0.2
, allowing minor changesonly.
A new version
v1.1.0
has been released, but require node>=4.4.5
. The currentfoundation-sites
node version is>=4.2.0
.Other changes
lint:javascript
task (duplicated array brackets around the list of sources)