browserslist 4.21.0 → 4.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -539,8 +539,8 @@ function nodeQuery(context, node) {
|
|
|
539
539
|
function sinceQuery(context, node) {
|
|
540
540
|
var year = parseInt(node.year)
|
|
541
541
|
var month = parseInt(node.month || '01') - 1
|
|
542
|
-
var
|
|
543
|
-
return filterByYear(Date.UTC(year, month,
|
|
542
|
+
var day = parseInt(node.day || '01')
|
|
543
|
+
return filterByYear(Date.UTC(year, month, day, 0, 0, 0), context)
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
function coverQuery(context, node) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist",
|
|
3
|
-
"version": "4.21.
|
|
3
|
+
"version": "4.21.1",
|
|
4
4
|
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caniuse",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"repository": "browserslist/browserslist",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"caniuse-lite": "^1.0.
|
|
25
|
-
"electron-to-chromium": "^1.4.
|
|
24
|
+
"caniuse-lite": "^1.0.30001359",
|
|
25
|
+
"electron-to-chromium": "^1.4.172",
|
|
26
26
|
"node-releases": "^2.0.5",
|
|
27
|
-
"update-browserslist-db": "^1.0.
|
|
27
|
+
"update-browserslist-db": "^1.0.4"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|