browserslist
Advanced tools
Comparing version 4.16.2 to 4.16.3
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## 4.16.3 | ||
* Fixed `--update-db`. | ||
## 4.16.2 | ||
@@ -5,0 +8,0 @@ * Fixed `--update-db` (by @ialarmedalien). |
{ | ||
"name": "browserslist", | ||
"version": "4.16.2", | ||
"version": "4.16.3", | ||
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -235,3 +235,3 @@ var childProcess = require('child_process') | ||
var install = (lock.mode === 'yarn' ? 'yarn add -W' : lock.mode) + ' install' | ||
var install = lock.mode === 'yarn' ? 'yarn add -W' : lock.mode + ' install' | ||
print( | ||
@@ -255,3 +255,3 @@ 'Installing new caniuse-lite version\n' + | ||
var del = (lock.mode === 'yarn' ? 'yarn remove -W' : lock.mode) + ' uninstall' | ||
var del = lock.mode === 'yarn' ? 'yarn remove -W' : lock.mode + ' uninstall' | ||
print( | ||
@@ -258,0 +258,0 @@ 'Cleaning package.json dependencies from caniuse-lite\n' + |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99386