sveltekit-temporal 0.3.0 → 0.4.0
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/addon.js +4 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -86,7 +86,10 @@ function escapeRegex(s) {
|
|
|
86
86
|
var options = defineAddonOptions().add("polyfill", {
|
|
87
87
|
question: "Which Temporal polyfill would you like to use?",
|
|
88
88
|
type: "select",
|
|
89
|
-
options: [
|
|
89
|
+
options: [
|
|
90
|
+
{ value: "@js-temporal/polyfill", label: "@js-temporal/polyfill", hint: "Official TC39 polyfill, ~100KB gzipped, spec-conservative" },
|
|
91
|
+
{ value: "temporal-polyfill", label: "temporal-polyfill", hint: "Smaller (~40KB gzipped) by Adam Shaw, same API surface" }
|
|
92
|
+
],
|
|
90
93
|
default: "@js-temporal/polyfill"
|
|
91
94
|
}).build();
|
|
92
95
|
var addon_default = defineAddon({
|
package/package.json
CHANGED