@jsenv/cli 0.3.68 → 0.3.71
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/package.json +3 -3
- package/template-node-package/package.json +4 -4
- package/template-web/package.json +6 -6
- package/template-web-components/package.json +6 -6
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/dist/preact.mjs +2 -0
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/hooks/dist/hooks.mjs +2 -0
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs +2 -0
- package/template-web-preact/.jsenv/entry_index/craft/app/app.jsx +2 -2
- package/template-web-preact/.jsenv/entry_index/craft/app/counter.jsx +3 -3
- package/template-web-preact/.jsenv/entry_index/craft/main.jsx +2 -2
- package/template-web-preact/.jsenv/entry_index/shape/@fs/Users/dmail/Documents/dev/jsenv/core/packages/related/cli/template-web-preact/dist/jsenv_template_web_preact_node_modules.js +1 -1
- package/template-web-preact/.jsenv/entry_index/shape/index.html +2 -2
- package/template-web-preact/.jsenv/entry_index/shape/main.jsx +1 -1
- package/template-web-preact/dist/index.html +2 -2
- package/template-web-preact/dist/js/main.js +1 -1
- package/template-web-preact/dist/jsenv_template_web_preact_node_modules.js +1 -1
- package/template-web-preact/package.json +8 -8
- package/template-web-react/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react-dom/react-dom/client7cjs_as_js_module=.jsx +24 -24
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react/index.production.js__compile_info__.json +2 -2
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react/jsx-runtime.production.js__compile_info__.json +2 -2
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react-dom/client.production.js +24 -24
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react-dom/client.production.js__compile_info__.json +3 -3
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/jsenv/core/packages/node_modules/react-dom/client.production.map +1 -1
- package/template-web-react/.jsenv/entry_index/craft/cjs_to_esm/__compile_context__.json +1 -1
- package/template-web-react/package.json +7 -7
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/dist/preact.module.js +0 -2
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/hooks/dist/hooks.module.js +0 -2
- package/template-web-preact/.jsenv/entry_index/craft/@fs/Users/dmail/Documents/dev/jsenv/core/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js +0 -2
|
@@ -46,7 +46,7 @@ var hasRequiredScheduler_production;
|
|
|
46
46
|
function requireScheduler_production () {
|
|
47
47
|
if (hasRequiredScheduler_production) return scheduler_production;
|
|
48
48
|
hasRequiredScheduler_production = 1;
|
|
49
|
-
(function (exports) {
|
|
49
|
+
(function (exports$1) {
|
|
50
50
|
function push(heap, node) {
|
|
51
51
|
var index = heap.length;
|
|
52
52
|
heap.push(node);
|
|
@@ -95,16 +95,16 @@ function requireScheduler_production () {
|
|
|
95
95
|
var diff = a.sortIndex - b.sortIndex;
|
|
96
96
|
return 0 !== diff ? diff : a.id - b.id;
|
|
97
97
|
}
|
|
98
|
-
exports.unstable_now = void 0;
|
|
98
|
+
exports$1.unstable_now = void 0;
|
|
99
99
|
if ("object" === typeof performance && "function" === typeof performance.now) {
|
|
100
100
|
var localPerformance = performance;
|
|
101
|
-
exports.unstable_now = function () {
|
|
101
|
+
exports$1.unstable_now = function () {
|
|
102
102
|
return localPerformance.now();
|
|
103
103
|
};
|
|
104
104
|
} else {
|
|
105
105
|
var localDate = Date,
|
|
106
106
|
initialTime = localDate.now();
|
|
107
|
-
exports.unstable_now = function () {
|
|
107
|
+
exports$1.unstable_now = function () {
|
|
108
108
|
return localDate.now() - initialTime;
|
|
109
109
|
};
|
|
110
110
|
}
|
|
@@ -152,14 +152,14 @@ function requireScheduler_production () {
|
|
|
152
152
|
function shouldYieldToHost() {
|
|
153
153
|
return needsPaint
|
|
154
154
|
? true
|
|
155
|
-
: exports.unstable_now() - startTime < frameInterval
|
|
155
|
+
: exports$1.unstable_now() - startTime < frameInterval
|
|
156
156
|
? false
|
|
157
157
|
: true;
|
|
158
158
|
}
|
|
159
159
|
function performWorkUntilDeadline() {
|
|
160
160
|
needsPaint = false;
|
|
161
161
|
if (isMessageLoopRunning) {
|
|
162
|
-
var currentTime = exports.unstable_now();
|
|
162
|
+
var currentTime = exports$1.unstable_now();
|
|
163
163
|
startTime = currentTime;
|
|
164
164
|
var hasMoreWork = true;
|
|
165
165
|
try {
|
|
@@ -189,7 +189,7 @@ function requireScheduler_production () {
|
|
|
189
189
|
var continuationCallback = callback(
|
|
190
190
|
currentTask.expirationTime <= currentTime
|
|
191
191
|
);
|
|
192
|
-
currentTime = exports.unstable_now();
|
|
192
|
+
currentTime = exports$1.unstable_now();
|
|
193
193
|
if ("function" === typeof continuationCallback) {
|
|
194
194
|
currentTask.callback = continuationCallback;
|
|
195
195
|
advanceTimers(currentTime);
|
|
@@ -245,29 +245,29 @@ function requireScheduler_production () {
|
|
|
245
245
|
};
|
|
246
246
|
function requestHostTimeout(callback, ms) {
|
|
247
247
|
taskTimeoutID = localSetTimeout(function () {
|
|
248
|
-
callback(exports.unstable_now());
|
|
248
|
+
callback(exports$1.unstable_now());
|
|
249
249
|
}, ms);
|
|
250
250
|
}
|
|
251
|
-
exports.unstable_IdlePriority = 5;
|
|
252
|
-
exports.unstable_ImmediatePriority = 1;
|
|
253
|
-
exports.unstable_LowPriority = 4;
|
|
254
|
-
exports.unstable_NormalPriority = 3;
|
|
255
|
-
exports.unstable_Profiling = null;
|
|
256
|
-
exports.unstable_UserBlockingPriority = 2;
|
|
257
|
-
exports.unstable_cancelCallback = function (task) {
|
|
251
|
+
exports$1.unstable_IdlePriority = 5;
|
|
252
|
+
exports$1.unstable_ImmediatePriority = 1;
|
|
253
|
+
exports$1.unstable_LowPriority = 4;
|
|
254
|
+
exports$1.unstable_NormalPriority = 3;
|
|
255
|
+
exports$1.unstable_Profiling = null;
|
|
256
|
+
exports$1.unstable_UserBlockingPriority = 2;
|
|
257
|
+
exports$1.unstable_cancelCallback = function (task) {
|
|
258
258
|
task.callback = null;
|
|
259
259
|
};
|
|
260
|
-
exports.unstable_forceFrameRate = function (fps) {
|
|
260
|
+
exports$1.unstable_forceFrameRate = function (fps) {
|
|
261
261
|
0 > fps || 125 < fps
|
|
262
262
|
? console.error(
|
|
263
263
|
"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
|
|
264
264
|
)
|
|
265
265
|
: (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);
|
|
266
266
|
};
|
|
267
|
-
exports.unstable_getCurrentPriorityLevel = function () {
|
|
267
|
+
exports$1.unstable_getCurrentPriorityLevel = function () {
|
|
268
268
|
return currentPriorityLevel;
|
|
269
269
|
};
|
|
270
|
-
exports.unstable_next = function (eventHandler) {
|
|
270
|
+
exports$1.unstable_next = function (eventHandler) {
|
|
271
271
|
switch (currentPriorityLevel) {
|
|
272
272
|
case 1:
|
|
273
273
|
case 2:
|
|
@@ -285,10 +285,10 @@ function requireScheduler_production () {
|
|
|
285
285
|
currentPriorityLevel = previousPriorityLevel;
|
|
286
286
|
}
|
|
287
287
|
};
|
|
288
|
-
exports.unstable_requestPaint = function () {
|
|
288
|
+
exports$1.unstable_requestPaint = function () {
|
|
289
289
|
needsPaint = true;
|
|
290
290
|
};
|
|
291
|
-
exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {
|
|
291
|
+
exports$1.unstable_runWithPriority = function (priorityLevel, eventHandler) {
|
|
292
292
|
switch (priorityLevel) {
|
|
293
293
|
case 1:
|
|
294
294
|
case 2:
|
|
@@ -307,12 +307,12 @@ function requireScheduler_production () {
|
|
|
307
307
|
currentPriorityLevel = previousPriorityLevel;
|
|
308
308
|
}
|
|
309
309
|
};
|
|
310
|
-
exports.unstable_scheduleCallback = function (
|
|
310
|
+
exports$1.unstable_scheduleCallback = function (
|
|
311
311
|
priorityLevel,
|
|
312
312
|
callback,
|
|
313
313
|
options
|
|
314
314
|
) {
|
|
315
|
-
var currentTime = exports.unstable_now();
|
|
315
|
+
var currentTime = exports$1.unstable_now();
|
|
316
316
|
"object" === typeof options && null !== options
|
|
317
317
|
? ((options = options.delay),
|
|
318
318
|
(options =
|
|
@@ -363,8 +363,8 @@ function requireScheduler_production () {
|
|
|
363
363
|
((isMessageLoopRunning = true), schedulePerformWorkUntilDeadline())));
|
|
364
364
|
return priorityLevel;
|
|
365
365
|
};
|
|
366
|
-
exports.unstable_shouldYield = shouldYieldToHost;
|
|
367
|
-
exports.unstable_wrapCallback = function (callback) {
|
|
366
|
+
exports$1.unstable_shouldYield = shouldYieldToHost;
|
|
367
|
+
exports$1.unstable_wrapCallback = function (callback) {
|
|
368
368
|
var parentPriorityLevel = currentPriorityLevel;
|
|
369
369
|
return function () {
|
|
370
370
|
var previousPriorityLevel = currentPriorityLevel;
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"client.production.map": {
|
|
28
28
|
"type": "sourcemap",
|
|
29
|
-
"etag": "\"
|
|
29
|
+
"etag": "\"fd66c-S4fESnbBaCnIsc8igikslZfDClo\""
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
|
-
"createdMs":
|
|
33
|
-
"lastModifiedMs":
|
|
32
|
+
"createdMs": 1762773790006,
|
|
33
|
+
"lastModifiedMs": 1762773790006
|
|
34
34
|
}
|