@bereasoftware/time-guard 2.4.0 → 2.4.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/dist/calendars/index.es.js +1 -1
- package/dist/plugins/advanced-format.es.js +1 -1
- package/dist/plugins/duration.es.js +1 -1
- package/dist/plugins/relative-time.es.js +1 -1
- package/dist/time-guard.cjs +1 -1
- package/dist/time-guard.cjs.map +1 -1
- package/dist/time-guard.es.js +156 -149
- package/dist/time-guard.es.js.map +1 -1
- package/dist/time-guard.iife.js +1 -1
- package/dist/time-guard.iife.js.map +1 -1
- package/dist/time-guard.umd.js +1 -1
- package/dist/time-guard.umd.js.map +1 -1
- package/dist/types/polyfill-loader.d.ts +1 -1
- package/package.json +2 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Polyfill Loader - Automatically loads Temporal API polyfill if needed
|
|
3
3
|
* No user installation required - polyfill is included in time-guard
|
|
4
|
-
* Compatible with both ESM and CJS environments (SSR / Nuxt / Node.js)
|
|
4
|
+
* Compatible with both ESM and CJS environments (SSR / Nest / Nuxt / Node.js)
|
|
5
5
|
*/
|
|
6
6
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bereasoftware/time-guard",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/time-guard.cjs",
|
|
@@ -116,14 +116,9 @@
|
|
|
116
116
|
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
117
117
|
"prepublishOnly": "npm run build"
|
|
118
118
|
},
|
|
119
|
-
"
|
|
119
|
+
"dependencies": {
|
|
120
120
|
"@js-temporal/polyfill": "^0.5.1"
|
|
121
121
|
},
|
|
122
|
-
"peerDependenciesMeta": {
|
|
123
|
-
"@js-temporal/polyfill": {
|
|
124
|
-
"optional": true
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
122
|
"devDependencies": {
|
|
128
123
|
"@js-temporal/polyfill": "^0.5.1",
|
|
129
124
|
"@semantic-release/changelog": "^6.0.3",
|