@mondaydotcomorg/browserslist-config 0.1.0 → 1.0.0-bug-moshe-fix-remix-utils-version-ad69211
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/CHANGELOG.md +9 -0
- package/dist/esm/index.d.ts +4 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.mjs +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## `1.0.0` (February 1, 2026, 09:07)
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- [#584](https://github.com/DaPulse/client-core/pull/584) feat(browserslist-config)!:bump package to major (@YossiSaadi)
|
|
8
|
+
|
|
9
|
+
- Added: JSDoc-style comment block at the top of the Browserslist config file, providing context and a reference link to the Browserslist query syntax documentation. This change improves code clarity and helps users understand the purpose and usage of the configuration.
|
|
10
|
+
- No changes to the public-facing API or the structure of the exported `config` object; the `production` and `development` browser targets remain unchanged. No migration is required for existing consumers.
|
|
11
|
+
|
|
3
12
|
## `0.1.0` (January 29, 2026, 13:23)
|
|
4
13
|
|
|
5
14
|
### New Features
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,MAAM;;;CAGX,CAAC;AAGF,eAAe,MAAM,CAAC;AAGtB,eAAO,MAAQ,UAAU,YAAE,WAAW,UAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,QAAA,MAAM,MAAM;;;CAGX,CAAC;AAGF,eAAe,MAAM,CAAC;AAGtB,eAAO,MAAQ,UAAU,YAAE,WAAW,UAAW,CAAC"}
|
package/dist/esm/index.mjs
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,MAAM;;;CAGX,CAAC;AAGF,eAAe,MAAM,CAAC;AAGtB,eAAO,MAAQ,UAAU,YAAE,WAAW,UAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,QAAA,MAAM,MAAM;;;CAGX,CAAC;AAGF,eAAe,MAAM,CAAC;AAGtB,eAAO,MAAQ,UAAU,YAAE,WAAW,UAAW,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Browserslist configuration for monday.com projects.
|
|
5
|
+
* @see https://browsersl.ist/ for query syntax
|
|
6
|
+
*/
|
|
3
7
|
const config = {
|
|
4
8
|
production: ['chrome >= 113', 'edge >= 113', 'firefox >= 121', 'safari >= 17.2'],
|
|
5
9
|
development: ['last 2 chrome version'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mondaydotcomorg/browserslist-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0-bug-moshe-fix-remix-utils-version-ad69211",
|
|
4
4
|
"description": "This package serves as monday.com's shared Browserslist configuration, to reduce duplication, and make sure all entities build for the same target environments.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
package/src/index.ts
CHANGED