@normed/bundle 4.5.2 → 4.5.5
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 +12 -0
- package/bundles/bin/cli.js +844 -695
- package/bundles/bin/cli.js.map +4 -4
- package/bundles/esbuild-plugins/css_url_resolver.d.ts +20 -0
- package/bundles/esbuild-plugins/index.d.ts +1 -0
- package/bundles/esbuild-plugins/load_pug.d.ts +16 -0
- package/bundles/index.js +844 -695
- package/bundles/index.js.map +4 -4
- package/package.json +1 -1
package/bundles/bin/cli.js
CHANGED
|
@@ -78,54 +78,54 @@ var require_polyfills = __commonJS({
|
|
|
78
78
|
}
|
|
79
79
|
var chdir;
|
|
80
80
|
module2.exports = patch;
|
|
81
|
-
function patch(
|
|
81
|
+
function patch(fs12) {
|
|
82
82
|
if (constants.hasOwnProperty("O_SYMLINK") && process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
|
|
83
|
-
patchLchmod(
|
|
84
|
-
}
|
|
85
|
-
if (!
|
|
86
|
-
patchLutimes(
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
if (
|
|
107
|
-
|
|
83
|
+
patchLchmod(fs12);
|
|
84
|
+
}
|
|
85
|
+
if (!fs12.lutimes) {
|
|
86
|
+
patchLutimes(fs12);
|
|
87
|
+
}
|
|
88
|
+
fs12.chown = chownFix(fs12.chown);
|
|
89
|
+
fs12.fchown = chownFix(fs12.fchown);
|
|
90
|
+
fs12.lchown = chownFix(fs12.lchown);
|
|
91
|
+
fs12.chmod = chmodFix(fs12.chmod);
|
|
92
|
+
fs12.fchmod = chmodFix(fs12.fchmod);
|
|
93
|
+
fs12.lchmod = chmodFix(fs12.lchmod);
|
|
94
|
+
fs12.chownSync = chownFixSync(fs12.chownSync);
|
|
95
|
+
fs12.fchownSync = chownFixSync(fs12.fchownSync);
|
|
96
|
+
fs12.lchownSync = chownFixSync(fs12.lchownSync);
|
|
97
|
+
fs12.chmodSync = chmodFixSync(fs12.chmodSync);
|
|
98
|
+
fs12.fchmodSync = chmodFixSync(fs12.fchmodSync);
|
|
99
|
+
fs12.lchmodSync = chmodFixSync(fs12.lchmodSync);
|
|
100
|
+
fs12.stat = statFix(fs12.stat);
|
|
101
|
+
fs12.fstat = statFix(fs12.fstat);
|
|
102
|
+
fs12.lstat = statFix(fs12.lstat);
|
|
103
|
+
fs12.statSync = statFixSync(fs12.statSync);
|
|
104
|
+
fs12.fstatSync = statFixSync(fs12.fstatSync);
|
|
105
|
+
fs12.lstatSync = statFixSync(fs12.lstatSync);
|
|
106
|
+
if (fs12.chmod && !fs12.lchmod) {
|
|
107
|
+
fs12.lchmod = function(path13, mode, cb) {
|
|
108
108
|
if (cb) process.nextTick(cb);
|
|
109
109
|
};
|
|
110
|
-
|
|
110
|
+
fs12.lchmodSync = function() {
|
|
111
111
|
};
|
|
112
112
|
}
|
|
113
|
-
if (
|
|
114
|
-
|
|
113
|
+
if (fs12.chown && !fs12.lchown) {
|
|
114
|
+
fs12.lchown = function(path13, uid, gid, cb) {
|
|
115
115
|
if (cb) process.nextTick(cb);
|
|
116
116
|
};
|
|
117
|
-
|
|
117
|
+
fs12.lchownSync = function() {
|
|
118
118
|
};
|
|
119
119
|
}
|
|
120
120
|
if (platform === "win32") {
|
|
121
|
-
|
|
121
|
+
fs12.rename = typeof fs12.rename !== "function" ? fs12.rename : function(fs$rename) {
|
|
122
122
|
function rename(from, to, cb) {
|
|
123
123
|
var start = Date.now();
|
|
124
124
|
var backoff = 0;
|
|
125
125
|
fs$rename(from, to, function CB(er) {
|
|
126
126
|
if (er && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY") && Date.now() - start < 6e4) {
|
|
127
127
|
setTimeout(function() {
|
|
128
|
-
|
|
128
|
+
fs12.stat(to, function(stater, st) {
|
|
129
129
|
if (stater && stater.code === "ENOENT")
|
|
130
130
|
fs$rename(from, to, CB);
|
|
131
131
|
else
|
|
@@ -141,9 +141,9 @@ var require_polyfills = __commonJS({
|
|
|
141
141
|
}
|
|
142
142
|
if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename);
|
|
143
143
|
return rename;
|
|
144
|
-
}(
|
|
144
|
+
}(fs12.rename);
|
|
145
145
|
}
|
|
146
|
-
|
|
146
|
+
fs12.read = typeof fs12.read !== "function" ? fs12.read : function(fs$read) {
|
|
147
147
|
function read(fd, buffer, offset, length, position, callback_) {
|
|
148
148
|
var callback;
|
|
149
149
|
if (callback_ && typeof callback_ === "function") {
|
|
@@ -151,22 +151,22 @@ var require_polyfills = __commonJS({
|
|
|
151
151
|
callback = function(er, _, __) {
|
|
152
152
|
if (er && er.code === "EAGAIN" && eagCounter < 10) {
|
|
153
153
|
eagCounter++;
|
|
154
|
-
return fs$read.call(
|
|
154
|
+
return fs$read.call(fs12, fd, buffer, offset, length, position, callback);
|
|
155
155
|
}
|
|
156
156
|
callback_.apply(this, arguments);
|
|
157
157
|
};
|
|
158
158
|
}
|
|
159
|
-
return fs$read.call(
|
|
159
|
+
return fs$read.call(fs12, fd, buffer, offset, length, position, callback);
|
|
160
160
|
}
|
|
161
161
|
if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read);
|
|
162
162
|
return read;
|
|
163
|
-
}(
|
|
164
|
-
|
|
163
|
+
}(fs12.read);
|
|
164
|
+
fs12.readSync = typeof fs12.readSync !== "function" ? fs12.readSync : /* @__PURE__ */ function(fs$readSync) {
|
|
165
165
|
return function(fd, buffer, offset, length, position) {
|
|
166
166
|
var eagCounter = 0;
|
|
167
167
|
while (true) {
|
|
168
168
|
try {
|
|
169
|
-
return fs$readSync.call(
|
|
169
|
+
return fs$readSync.call(fs12, fd, buffer, offset, length, position);
|
|
170
170
|
} catch (er) {
|
|
171
171
|
if (er.code === "EAGAIN" && eagCounter < 10) {
|
|
172
172
|
eagCounter++;
|
|
@@ -176,11 +176,11 @@ var require_polyfills = __commonJS({
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
};
|
|
179
|
-
}(
|
|
180
|
-
function patchLchmod(
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
179
|
+
}(fs12.readSync);
|
|
180
|
+
function patchLchmod(fs13) {
|
|
181
|
+
fs13.lchmod = function(path13, mode, callback) {
|
|
182
|
+
fs13.open(
|
|
183
|
+
path13,
|
|
184
184
|
constants.O_WRONLY | constants.O_SYMLINK,
|
|
185
185
|
mode,
|
|
186
186
|
function(err, fd) {
|
|
@@ -188,80 +188,80 @@ var require_polyfills = __commonJS({
|
|
|
188
188
|
if (callback) callback(err);
|
|
189
189
|
return;
|
|
190
190
|
}
|
|
191
|
-
|
|
192
|
-
|
|
191
|
+
fs13.fchmod(fd, mode, function(err2) {
|
|
192
|
+
fs13.close(fd, function(err22) {
|
|
193
193
|
if (callback) callback(err2 || err22);
|
|
194
194
|
});
|
|
195
195
|
});
|
|
196
196
|
}
|
|
197
197
|
);
|
|
198
198
|
};
|
|
199
|
-
|
|
200
|
-
var fd =
|
|
199
|
+
fs13.lchmodSync = function(path13, mode) {
|
|
200
|
+
var fd = fs13.openSync(path13, constants.O_WRONLY | constants.O_SYMLINK, mode);
|
|
201
201
|
var threw = true;
|
|
202
202
|
var ret;
|
|
203
203
|
try {
|
|
204
|
-
ret =
|
|
204
|
+
ret = fs13.fchmodSync(fd, mode);
|
|
205
205
|
threw = false;
|
|
206
206
|
} finally {
|
|
207
207
|
if (threw) {
|
|
208
208
|
try {
|
|
209
|
-
|
|
209
|
+
fs13.closeSync(fd);
|
|
210
210
|
} catch (er) {
|
|
211
211
|
}
|
|
212
212
|
} else {
|
|
213
|
-
|
|
213
|
+
fs13.closeSync(fd);
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
return ret;
|
|
217
217
|
};
|
|
218
218
|
}
|
|
219
|
-
function patchLutimes(
|
|
220
|
-
if (constants.hasOwnProperty("O_SYMLINK") &&
|
|
221
|
-
|
|
222
|
-
|
|
219
|
+
function patchLutimes(fs13) {
|
|
220
|
+
if (constants.hasOwnProperty("O_SYMLINK") && fs13.futimes) {
|
|
221
|
+
fs13.lutimes = function(path13, at, mt, cb) {
|
|
222
|
+
fs13.open(path13, constants.O_SYMLINK, function(er, fd) {
|
|
223
223
|
if (er) {
|
|
224
224
|
if (cb) cb(er);
|
|
225
225
|
return;
|
|
226
226
|
}
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
fs13.futimes(fd, at, mt, function(er2) {
|
|
228
|
+
fs13.close(fd, function(er22) {
|
|
229
229
|
if (cb) cb(er2 || er22);
|
|
230
230
|
});
|
|
231
231
|
});
|
|
232
232
|
});
|
|
233
233
|
};
|
|
234
|
-
|
|
235
|
-
var fd =
|
|
234
|
+
fs13.lutimesSync = function(path13, at, mt) {
|
|
235
|
+
var fd = fs13.openSync(path13, constants.O_SYMLINK);
|
|
236
236
|
var ret;
|
|
237
237
|
var threw = true;
|
|
238
238
|
try {
|
|
239
|
-
ret =
|
|
239
|
+
ret = fs13.futimesSync(fd, at, mt);
|
|
240
240
|
threw = false;
|
|
241
241
|
} finally {
|
|
242
242
|
if (threw) {
|
|
243
243
|
try {
|
|
244
|
-
|
|
244
|
+
fs13.closeSync(fd);
|
|
245
245
|
} catch (er) {
|
|
246
246
|
}
|
|
247
247
|
} else {
|
|
248
|
-
|
|
248
|
+
fs13.closeSync(fd);
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
251
|
return ret;
|
|
252
252
|
};
|
|
253
|
-
} else if (
|
|
254
|
-
|
|
253
|
+
} else if (fs13.futimes) {
|
|
254
|
+
fs13.lutimes = function(_a, _b, _c, cb) {
|
|
255
255
|
if (cb) process.nextTick(cb);
|
|
256
256
|
};
|
|
257
|
-
|
|
257
|
+
fs13.lutimesSync = function() {
|
|
258
258
|
};
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
261
|
function chmodFix(orig) {
|
|
262
262
|
if (!orig) return orig;
|
|
263
263
|
return function(target, mode, cb) {
|
|
264
|
-
return orig.call(
|
|
264
|
+
return orig.call(fs12, target, mode, function(er) {
|
|
265
265
|
if (chownErOk(er)) er = null;
|
|
266
266
|
if (cb) cb.apply(this, arguments);
|
|
267
267
|
});
|
|
@@ -271,7 +271,7 @@ var require_polyfills = __commonJS({
|
|
|
271
271
|
if (!orig) return orig;
|
|
272
272
|
return function(target, mode) {
|
|
273
273
|
try {
|
|
274
|
-
return orig.call(
|
|
274
|
+
return orig.call(fs12, target, mode);
|
|
275
275
|
} catch (er) {
|
|
276
276
|
if (!chownErOk(er)) throw er;
|
|
277
277
|
}
|
|
@@ -280,7 +280,7 @@ var require_polyfills = __commonJS({
|
|
|
280
280
|
function chownFix(orig) {
|
|
281
281
|
if (!orig) return orig;
|
|
282
282
|
return function(target, uid, gid, cb) {
|
|
283
|
-
return orig.call(
|
|
283
|
+
return orig.call(fs12, target, uid, gid, function(er) {
|
|
284
284
|
if (chownErOk(er)) er = null;
|
|
285
285
|
if (cb) cb.apply(this, arguments);
|
|
286
286
|
});
|
|
@@ -290,7 +290,7 @@ var require_polyfills = __commonJS({
|
|
|
290
290
|
if (!orig) return orig;
|
|
291
291
|
return function(target, uid, gid) {
|
|
292
292
|
try {
|
|
293
|
-
return orig.call(
|
|
293
|
+
return orig.call(fs12, target, uid, gid);
|
|
294
294
|
} catch (er) {
|
|
295
295
|
if (!chownErOk(er)) throw er;
|
|
296
296
|
}
|
|
@@ -310,13 +310,13 @@ var require_polyfills = __commonJS({
|
|
|
310
310
|
}
|
|
311
311
|
if (cb) cb.apply(this, arguments);
|
|
312
312
|
}
|
|
313
|
-
return options2 ? orig.call(
|
|
313
|
+
return options2 ? orig.call(fs12, target, options2, callback) : orig.call(fs12, target, callback);
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
316
|
function statFixSync(orig) {
|
|
317
317
|
if (!orig) return orig;
|
|
318
318
|
return function(target, options2) {
|
|
319
|
-
var stats = options2 ? orig.call(
|
|
319
|
+
var stats = options2 ? orig.call(fs12, target, options2) : orig.call(fs12, target);
|
|
320
320
|
if (stats) {
|
|
321
321
|
if (stats.uid < 0) stats.uid += 4294967296;
|
|
322
322
|
if (stats.gid < 0) stats.gid += 4294967296;
|
|
@@ -345,16 +345,16 @@ var require_legacy_streams = __commonJS({
|
|
|
345
345
|
"pnp:/builds/normed/bundle/.yarn/cache/graceful-fs-npm-4.2.11-24bb648a68-bf152d0ed1.zip/node_modules/graceful-fs/legacy-streams.js"(exports2, module2) {
|
|
346
346
|
var Stream = require("stream").Stream;
|
|
347
347
|
module2.exports = legacy;
|
|
348
|
-
function legacy(
|
|
348
|
+
function legacy(fs12) {
|
|
349
349
|
return {
|
|
350
350
|
ReadStream,
|
|
351
351
|
WriteStream
|
|
352
352
|
};
|
|
353
|
-
function ReadStream(
|
|
354
|
-
if (!(this instanceof ReadStream)) return new ReadStream(
|
|
353
|
+
function ReadStream(path13, options2) {
|
|
354
|
+
if (!(this instanceof ReadStream)) return new ReadStream(path13, options2);
|
|
355
355
|
Stream.call(this);
|
|
356
356
|
var self2 = this;
|
|
357
|
-
this.path =
|
|
357
|
+
this.path = path13;
|
|
358
358
|
this.fd = null;
|
|
359
359
|
this.readable = true;
|
|
360
360
|
this.paused = false;
|
|
@@ -388,7 +388,7 @@ var require_legacy_streams = __commonJS({
|
|
|
388
388
|
});
|
|
389
389
|
return;
|
|
390
390
|
}
|
|
391
|
-
|
|
391
|
+
fs12.open(this.path, this.flags, this.mode, function(err, fd) {
|
|
392
392
|
if (err) {
|
|
393
393
|
self2.emit("error", err);
|
|
394
394
|
self2.readable = false;
|
|
@@ -399,10 +399,10 @@ var require_legacy_streams = __commonJS({
|
|
|
399
399
|
self2._read();
|
|
400
400
|
});
|
|
401
401
|
}
|
|
402
|
-
function WriteStream(
|
|
403
|
-
if (!(this instanceof WriteStream)) return new WriteStream(
|
|
402
|
+
function WriteStream(path13, options2) {
|
|
403
|
+
if (!(this instanceof WriteStream)) return new WriteStream(path13, options2);
|
|
404
404
|
Stream.call(this);
|
|
405
|
-
this.path =
|
|
405
|
+
this.path = path13;
|
|
406
406
|
this.fd = null;
|
|
407
407
|
this.writable = true;
|
|
408
408
|
this.flags = "w";
|
|
@@ -427,7 +427,7 @@ var require_legacy_streams = __commonJS({
|
|
|
427
427
|
this.busy = false;
|
|
428
428
|
this._queue = [];
|
|
429
429
|
if (this.fd === null) {
|
|
430
|
-
this._open =
|
|
430
|
+
this._open = fs12.open;
|
|
431
431
|
this._queue.push([this._open, this.path, this.flags, this.mode, void 0]);
|
|
432
432
|
this.flush();
|
|
433
433
|
}
|
|
@@ -462,7 +462,7 @@ var require_clone = __commonJS({
|
|
|
462
462
|
// pnp:/builds/normed/bundle/.yarn/cache/graceful-fs-npm-4.2.11-24bb648a68-bf152d0ed1.zip/node_modules/graceful-fs/graceful-fs.js
|
|
463
463
|
var require_graceful_fs = __commonJS({
|
|
464
464
|
"pnp:/builds/normed/bundle/.yarn/cache/graceful-fs-npm-4.2.11-24bb648a68-bf152d0ed1.zip/node_modules/graceful-fs/graceful-fs.js"(exports2, module2) {
|
|
465
|
-
var
|
|
465
|
+
var fs12 = require("fs");
|
|
466
466
|
var polyfills = require_polyfills();
|
|
467
467
|
var legacy = require_legacy_streams();
|
|
468
468
|
var clone = require_clone();
|
|
@@ -494,12 +494,12 @@ var require_graceful_fs = __commonJS({
|
|
|
494
494
|
m = "GFS4: " + m.split(/\n/).join("\nGFS4: ");
|
|
495
495
|
console.error(m);
|
|
496
496
|
};
|
|
497
|
-
if (!
|
|
497
|
+
if (!fs12[gracefulQueue]) {
|
|
498
498
|
queue = global[gracefulQueue] || [];
|
|
499
|
-
publishQueue(
|
|
500
|
-
|
|
499
|
+
publishQueue(fs12, queue);
|
|
500
|
+
fs12.close = function(fs$close) {
|
|
501
501
|
function close(fd, cb) {
|
|
502
|
-
return fs$close.call(
|
|
502
|
+
return fs$close.call(fs12, fd, function(err) {
|
|
503
503
|
if (!err) {
|
|
504
504
|
resetQueue();
|
|
505
505
|
}
|
|
@@ -511,48 +511,48 @@ var require_graceful_fs = __commonJS({
|
|
|
511
511
|
value: fs$close
|
|
512
512
|
});
|
|
513
513
|
return close;
|
|
514
|
-
}(
|
|
515
|
-
|
|
514
|
+
}(fs12.close);
|
|
515
|
+
fs12.closeSync = function(fs$closeSync) {
|
|
516
516
|
function closeSync(fd) {
|
|
517
|
-
fs$closeSync.apply(
|
|
517
|
+
fs$closeSync.apply(fs12, arguments);
|
|
518
518
|
resetQueue();
|
|
519
519
|
}
|
|
520
520
|
Object.defineProperty(closeSync, previousSymbol, {
|
|
521
521
|
value: fs$closeSync
|
|
522
522
|
});
|
|
523
523
|
return closeSync;
|
|
524
|
-
}(
|
|
524
|
+
}(fs12.closeSync);
|
|
525
525
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
526
526
|
process.on("exit", function() {
|
|
527
|
-
debug(
|
|
528
|
-
require("assert").equal(
|
|
527
|
+
debug(fs12[gracefulQueue]);
|
|
528
|
+
require("assert").equal(fs12[gracefulQueue].length, 0);
|
|
529
529
|
});
|
|
530
530
|
}
|
|
531
531
|
}
|
|
532
532
|
var queue;
|
|
533
533
|
if (!global[gracefulQueue]) {
|
|
534
|
-
publishQueue(global,
|
|
535
|
-
}
|
|
536
|
-
module2.exports = patch(clone(
|
|
537
|
-
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !
|
|
538
|
-
module2.exports = patch(
|
|
539
|
-
|
|
540
|
-
}
|
|
541
|
-
function patch(
|
|
542
|
-
polyfills(
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
var fs$readFile =
|
|
547
|
-
|
|
548
|
-
function readFile(
|
|
534
|
+
publishQueue(global, fs12[gracefulQueue]);
|
|
535
|
+
}
|
|
536
|
+
module2.exports = patch(clone(fs12));
|
|
537
|
+
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs12.__patched) {
|
|
538
|
+
module2.exports = patch(fs12);
|
|
539
|
+
fs12.__patched = true;
|
|
540
|
+
}
|
|
541
|
+
function patch(fs13) {
|
|
542
|
+
polyfills(fs13);
|
|
543
|
+
fs13.gracefulify = patch;
|
|
544
|
+
fs13.createReadStream = createReadStream;
|
|
545
|
+
fs13.createWriteStream = createWriteStream;
|
|
546
|
+
var fs$readFile = fs13.readFile;
|
|
547
|
+
fs13.readFile = readFile;
|
|
548
|
+
function readFile(path13, options2, cb) {
|
|
549
549
|
if (typeof options2 === "function")
|
|
550
550
|
cb = options2, options2 = null;
|
|
551
|
-
return go$readFile(
|
|
552
|
-
function go$readFile(
|
|
553
|
-
return fs$readFile(
|
|
551
|
+
return go$readFile(path13, options2, cb);
|
|
552
|
+
function go$readFile(path14, options3, cb2, startTime2) {
|
|
553
|
+
return fs$readFile(path14, options3, function(err) {
|
|
554
554
|
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
|
555
|
-
enqueue([go$readFile, [
|
|
555
|
+
enqueue([go$readFile, [path14, options3, cb2], err, startTime2 || Date.now(), Date.now()]);
|
|
556
556
|
else {
|
|
557
557
|
if (typeof cb2 === "function")
|
|
558
558
|
cb2.apply(this, arguments);
|
|
@@ -560,16 +560,16 @@ var require_graceful_fs = __commonJS({
|
|
|
560
560
|
});
|
|
561
561
|
}
|
|
562
562
|
}
|
|
563
|
-
var fs$writeFile =
|
|
564
|
-
|
|
565
|
-
function writeFile(
|
|
563
|
+
var fs$writeFile = fs13.writeFile;
|
|
564
|
+
fs13.writeFile = writeFile;
|
|
565
|
+
function writeFile(path13, data, options2, cb) {
|
|
566
566
|
if (typeof options2 === "function")
|
|
567
567
|
cb = options2, options2 = null;
|
|
568
|
-
return go$writeFile(
|
|
569
|
-
function go$writeFile(
|
|
570
|
-
return fs$writeFile(
|
|
568
|
+
return go$writeFile(path13, data, options2, cb);
|
|
569
|
+
function go$writeFile(path14, data2, options3, cb2, startTime2) {
|
|
570
|
+
return fs$writeFile(path14, data2, options3, function(err) {
|
|
571
571
|
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
|
572
|
-
enqueue([go$writeFile, [
|
|
572
|
+
enqueue([go$writeFile, [path14, data2, options3, cb2], err, startTime2 || Date.now(), Date.now()]);
|
|
573
573
|
else {
|
|
574
574
|
if (typeof cb2 === "function")
|
|
575
575
|
cb2.apply(this, arguments);
|
|
@@ -577,17 +577,17 @@ var require_graceful_fs = __commonJS({
|
|
|
577
577
|
});
|
|
578
578
|
}
|
|
579
579
|
}
|
|
580
|
-
var fs$appendFile =
|
|
580
|
+
var fs$appendFile = fs13.appendFile;
|
|
581
581
|
if (fs$appendFile)
|
|
582
|
-
|
|
583
|
-
function appendFile(
|
|
582
|
+
fs13.appendFile = appendFile;
|
|
583
|
+
function appendFile(path13, data, options2, cb) {
|
|
584
584
|
if (typeof options2 === "function")
|
|
585
585
|
cb = options2, options2 = null;
|
|
586
|
-
return go$appendFile(
|
|
587
|
-
function go$appendFile(
|
|
588
|
-
return fs$appendFile(
|
|
586
|
+
return go$appendFile(path13, data, options2, cb);
|
|
587
|
+
function go$appendFile(path14, data2, options3, cb2, startTime2) {
|
|
588
|
+
return fs$appendFile(path14, data2, options3, function(err) {
|
|
589
589
|
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
|
590
|
-
enqueue([go$appendFile, [
|
|
590
|
+
enqueue([go$appendFile, [path14, data2, options3, cb2], err, startTime2 || Date.now(), Date.now()]);
|
|
591
591
|
else {
|
|
592
592
|
if (typeof cb2 === "function")
|
|
593
593
|
cb2.apply(this, arguments);
|
|
@@ -595,9 +595,9 @@ var require_graceful_fs = __commonJS({
|
|
|
595
595
|
});
|
|
596
596
|
}
|
|
597
597
|
}
|
|
598
|
-
var fs$copyFile =
|
|
598
|
+
var fs$copyFile = fs13.copyFile;
|
|
599
599
|
if (fs$copyFile)
|
|
600
|
-
|
|
600
|
+
fs13.copyFile = copyFile;
|
|
601
601
|
function copyFile(src, dest, flags, cb) {
|
|
602
602
|
if (typeof flags === "function") {
|
|
603
603
|
cb = flags;
|
|
@@ -615,34 +615,34 @@ var require_graceful_fs = __commonJS({
|
|
|
615
615
|
});
|
|
616
616
|
}
|
|
617
617
|
}
|
|
618
|
-
var fs$readdir =
|
|
619
|
-
|
|
618
|
+
var fs$readdir = fs13.readdir;
|
|
619
|
+
fs13.readdir = readdir;
|
|
620
620
|
var noReaddirOptionVersions = /^v[0-5]\./;
|
|
621
|
-
function readdir(
|
|
621
|
+
function readdir(path13, options2, cb) {
|
|
622
622
|
if (typeof options2 === "function")
|
|
623
623
|
cb = options2, options2 = null;
|
|
624
|
-
var go$readdir = noReaddirOptionVersions.test(process.version) ? function go$readdir2(
|
|
625
|
-
return fs$readdir(
|
|
626
|
-
|
|
624
|
+
var go$readdir = noReaddirOptionVersions.test(process.version) ? function go$readdir2(path14, options3, cb2, startTime2) {
|
|
625
|
+
return fs$readdir(path14, fs$readdirCallback(
|
|
626
|
+
path14,
|
|
627
627
|
options3,
|
|
628
628
|
cb2,
|
|
629
629
|
startTime2
|
|
630
630
|
));
|
|
631
|
-
} : function go$readdir2(
|
|
632
|
-
return fs$readdir(
|
|
633
|
-
|
|
631
|
+
} : function go$readdir2(path14, options3, cb2, startTime2) {
|
|
632
|
+
return fs$readdir(path14, options3, fs$readdirCallback(
|
|
633
|
+
path14,
|
|
634
634
|
options3,
|
|
635
635
|
cb2,
|
|
636
636
|
startTime2
|
|
637
637
|
));
|
|
638
638
|
};
|
|
639
|
-
return go$readdir(
|
|
640
|
-
function fs$readdirCallback(
|
|
639
|
+
return go$readdir(path13, options2, cb);
|
|
640
|
+
function fs$readdirCallback(path14, options3, cb2, startTime2) {
|
|
641
641
|
return function(err, files) {
|
|
642
642
|
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
|
643
643
|
enqueue([
|
|
644
644
|
go$readdir,
|
|
645
|
-
[
|
|
645
|
+
[path14, options3, cb2],
|
|
646
646
|
err,
|
|
647
647
|
startTime2 || Date.now(),
|
|
648
648
|
Date.now()
|
|
@@ -657,21 +657,21 @@ var require_graceful_fs = __commonJS({
|
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
659
|
if (process.version.substr(0, 4) === "v0.8") {
|
|
660
|
-
var legStreams = legacy(
|
|
660
|
+
var legStreams = legacy(fs13);
|
|
661
661
|
ReadStream = legStreams.ReadStream;
|
|
662
662
|
WriteStream = legStreams.WriteStream;
|
|
663
663
|
}
|
|
664
|
-
var fs$ReadStream =
|
|
664
|
+
var fs$ReadStream = fs13.ReadStream;
|
|
665
665
|
if (fs$ReadStream) {
|
|
666
666
|
ReadStream.prototype = Object.create(fs$ReadStream.prototype);
|
|
667
667
|
ReadStream.prototype.open = ReadStream$open;
|
|
668
668
|
}
|
|
669
|
-
var fs$WriteStream =
|
|
669
|
+
var fs$WriteStream = fs13.WriteStream;
|
|
670
670
|
if (fs$WriteStream) {
|
|
671
671
|
WriteStream.prototype = Object.create(fs$WriteStream.prototype);
|
|
672
672
|
WriteStream.prototype.open = WriteStream$open;
|
|
673
673
|
}
|
|
674
|
-
Object.defineProperty(
|
|
674
|
+
Object.defineProperty(fs13, "ReadStream", {
|
|
675
675
|
get: function() {
|
|
676
676
|
return ReadStream;
|
|
677
677
|
},
|
|
@@ -681,7 +681,7 @@ var require_graceful_fs = __commonJS({
|
|
|
681
681
|
enumerable: true,
|
|
682
682
|
configurable: true
|
|
683
683
|
});
|
|
684
|
-
Object.defineProperty(
|
|
684
|
+
Object.defineProperty(fs13, "WriteStream", {
|
|
685
685
|
get: function() {
|
|
686
686
|
return WriteStream;
|
|
687
687
|
},
|
|
@@ -692,7 +692,7 @@ var require_graceful_fs = __commonJS({
|
|
|
692
692
|
configurable: true
|
|
693
693
|
});
|
|
694
694
|
var FileReadStream = ReadStream;
|
|
695
|
-
Object.defineProperty(
|
|
695
|
+
Object.defineProperty(fs13, "FileReadStream", {
|
|
696
696
|
get: function() {
|
|
697
697
|
return FileReadStream;
|
|
698
698
|
},
|
|
@@ -703,7 +703,7 @@ var require_graceful_fs = __commonJS({
|
|
|
703
703
|
configurable: true
|
|
704
704
|
});
|
|
705
705
|
var FileWriteStream = WriteStream;
|
|
706
|
-
Object.defineProperty(
|
|
706
|
+
Object.defineProperty(fs13, "FileWriteStream", {
|
|
707
707
|
get: function() {
|
|
708
708
|
return FileWriteStream;
|
|
709
709
|
},
|
|
@@ -713,7 +713,7 @@ var require_graceful_fs = __commonJS({
|
|
|
713
713
|
enumerable: true,
|
|
714
714
|
configurable: true
|
|
715
715
|
});
|
|
716
|
-
function ReadStream(
|
|
716
|
+
function ReadStream(path13, options2) {
|
|
717
717
|
if (this instanceof ReadStream)
|
|
718
718
|
return fs$ReadStream.apply(this, arguments), this;
|
|
719
719
|
else
|
|
@@ -733,7 +733,7 @@ var require_graceful_fs = __commonJS({
|
|
|
733
733
|
}
|
|
734
734
|
});
|
|
735
735
|
}
|
|
736
|
-
function WriteStream(
|
|
736
|
+
function WriteStream(path13, options2) {
|
|
737
737
|
if (this instanceof WriteStream)
|
|
738
738
|
return fs$WriteStream.apply(this, arguments), this;
|
|
739
739
|
else
|
|
@@ -751,22 +751,22 @@ var require_graceful_fs = __commonJS({
|
|
|
751
751
|
}
|
|
752
752
|
});
|
|
753
753
|
}
|
|
754
|
-
function createReadStream(
|
|
755
|
-
return new
|
|
754
|
+
function createReadStream(path13, options2) {
|
|
755
|
+
return new fs13.ReadStream(path13, options2);
|
|
756
756
|
}
|
|
757
|
-
function createWriteStream(
|
|
758
|
-
return new
|
|
757
|
+
function createWriteStream(path13, options2) {
|
|
758
|
+
return new fs13.WriteStream(path13, options2);
|
|
759
759
|
}
|
|
760
|
-
var fs$open =
|
|
761
|
-
|
|
762
|
-
function open(
|
|
760
|
+
var fs$open = fs13.open;
|
|
761
|
+
fs13.open = open;
|
|
762
|
+
function open(path13, flags, mode, cb) {
|
|
763
763
|
if (typeof mode === "function")
|
|
764
764
|
cb = mode, mode = null;
|
|
765
|
-
return go$open(
|
|
766
|
-
function go$open(
|
|
767
|
-
return fs$open(
|
|
765
|
+
return go$open(path13, flags, mode, cb);
|
|
766
|
+
function go$open(path14, flags2, mode2, cb2, startTime2) {
|
|
767
|
+
return fs$open(path14, flags2, mode2, function(err, fd) {
|
|
768
768
|
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
|
769
|
-
enqueue([go$open, [
|
|
769
|
+
enqueue([go$open, [path14, flags2, mode2, cb2], err, startTime2 || Date.now(), Date.now()]);
|
|
770
770
|
else {
|
|
771
771
|
if (typeof cb2 === "function")
|
|
772
772
|
cb2.apply(this, arguments);
|
|
@@ -774,20 +774,20 @@ var require_graceful_fs = __commonJS({
|
|
|
774
774
|
});
|
|
775
775
|
}
|
|
776
776
|
}
|
|
777
|
-
return
|
|
777
|
+
return fs13;
|
|
778
778
|
}
|
|
779
779
|
function enqueue(elem) {
|
|
780
780
|
debug("ENQUEUE", elem[0].name, elem[1]);
|
|
781
|
-
|
|
781
|
+
fs12[gracefulQueue].push(elem);
|
|
782
782
|
retry();
|
|
783
783
|
}
|
|
784
784
|
var retryTimer;
|
|
785
785
|
function resetQueue() {
|
|
786
786
|
var now = Date.now();
|
|
787
|
-
for (var i = 0; i <
|
|
788
|
-
if (
|
|
789
|
-
|
|
790
|
-
|
|
787
|
+
for (var i = 0; i < fs12[gracefulQueue].length; ++i) {
|
|
788
|
+
if (fs12[gracefulQueue][i].length > 2) {
|
|
789
|
+
fs12[gracefulQueue][i][3] = now;
|
|
790
|
+
fs12[gracefulQueue][i][4] = now;
|
|
791
791
|
}
|
|
792
792
|
}
|
|
793
793
|
retry();
|
|
@@ -795,9 +795,9 @@ var require_graceful_fs = __commonJS({
|
|
|
795
795
|
function retry() {
|
|
796
796
|
clearTimeout(retryTimer);
|
|
797
797
|
retryTimer = void 0;
|
|
798
|
-
if (
|
|
798
|
+
if (fs12[gracefulQueue].length === 0)
|
|
799
799
|
return;
|
|
800
|
-
var elem =
|
|
800
|
+
var elem = fs12[gracefulQueue].shift();
|
|
801
801
|
var fn = elem[0];
|
|
802
802
|
var args = elem[1];
|
|
803
803
|
var err = elem[2];
|
|
@@ -819,7 +819,7 @@ var require_graceful_fs = __commonJS({
|
|
|
819
819
|
debug("RETRY", fn.name, args);
|
|
820
820
|
fn.apply(null, args.concat([startTime2]));
|
|
821
821
|
} else {
|
|
822
|
-
|
|
822
|
+
fs12[gracefulQueue].push(elem);
|
|
823
823
|
}
|
|
824
824
|
}
|
|
825
825
|
if (retryTimer === void 0) {
|
|
@@ -834,7 +834,7 @@ var require_fs = __commonJS({
|
|
|
834
834
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/fs/index.js"(exports2) {
|
|
835
835
|
"use strict";
|
|
836
836
|
var u = require_universalify().fromCallback;
|
|
837
|
-
var
|
|
837
|
+
var fs12 = require_graceful_fs();
|
|
838
838
|
var api = [
|
|
839
839
|
"access",
|
|
840
840
|
"appendFile",
|
|
@@ -875,26 +875,26 @@ var require_fs = __commonJS({
|
|
|
875
875
|
"utimes",
|
|
876
876
|
"writeFile"
|
|
877
877
|
].filter((key) => {
|
|
878
|
-
return typeof
|
|
878
|
+
return typeof fs12[key] === "function";
|
|
879
879
|
});
|
|
880
|
-
Object.assign(exports2,
|
|
880
|
+
Object.assign(exports2, fs12);
|
|
881
881
|
api.forEach((method) => {
|
|
882
|
-
exports2[method] = u(
|
|
882
|
+
exports2[method] = u(fs12[method]);
|
|
883
883
|
});
|
|
884
884
|
exports2.exists = function(filename, callback) {
|
|
885
885
|
if (typeof callback === "function") {
|
|
886
|
-
return
|
|
886
|
+
return fs12.exists(filename, callback);
|
|
887
887
|
}
|
|
888
888
|
return new Promise((resolve) => {
|
|
889
|
-
return
|
|
889
|
+
return fs12.exists(filename, resolve);
|
|
890
890
|
});
|
|
891
891
|
};
|
|
892
892
|
exports2.read = function(fd, buffer, offset, length, position, callback) {
|
|
893
893
|
if (typeof callback === "function") {
|
|
894
|
-
return
|
|
894
|
+
return fs12.read(fd, buffer, offset, length, position, callback);
|
|
895
895
|
}
|
|
896
896
|
return new Promise((resolve, reject) => {
|
|
897
|
-
|
|
897
|
+
fs12.read(fd, buffer, offset, length, position, (err, bytesRead, buffer2) => {
|
|
898
898
|
if (err) return reject(err);
|
|
899
899
|
resolve({ bytesRead, buffer: buffer2 });
|
|
900
900
|
});
|
|
@@ -902,10 +902,10 @@ var require_fs = __commonJS({
|
|
|
902
902
|
};
|
|
903
903
|
exports2.write = function(fd, buffer, ...args) {
|
|
904
904
|
if (typeof args[args.length - 1] === "function") {
|
|
905
|
-
return
|
|
905
|
+
return fs12.write(fd, buffer, ...args);
|
|
906
906
|
}
|
|
907
907
|
return new Promise((resolve, reject) => {
|
|
908
|
-
|
|
908
|
+
fs12.write(fd, buffer, ...args, (err, bytesWritten, buffer2) => {
|
|
909
909
|
if (err) return reject(err);
|
|
910
910
|
resolve({ bytesWritten, buffer: buffer2 });
|
|
911
911
|
});
|
|
@@ -913,10 +913,10 @@ var require_fs = __commonJS({
|
|
|
913
913
|
};
|
|
914
914
|
exports2.readv = function(fd, buffers, ...args) {
|
|
915
915
|
if (typeof args[args.length - 1] === "function") {
|
|
916
|
-
return
|
|
916
|
+
return fs12.readv(fd, buffers, ...args);
|
|
917
917
|
}
|
|
918
918
|
return new Promise((resolve, reject) => {
|
|
919
|
-
|
|
919
|
+
fs12.readv(fd, buffers, ...args, (err, bytesRead, buffers2) => {
|
|
920
920
|
if (err) return reject(err);
|
|
921
921
|
resolve({ bytesRead, buffers: buffers2 });
|
|
922
922
|
});
|
|
@@ -924,17 +924,17 @@ var require_fs = __commonJS({
|
|
|
924
924
|
};
|
|
925
925
|
exports2.writev = function(fd, buffers, ...args) {
|
|
926
926
|
if (typeof args[args.length - 1] === "function") {
|
|
927
|
-
return
|
|
927
|
+
return fs12.writev(fd, buffers, ...args);
|
|
928
928
|
}
|
|
929
929
|
return new Promise((resolve, reject) => {
|
|
930
|
-
|
|
930
|
+
fs12.writev(fd, buffers, ...args, (err, bytesWritten, buffers2) => {
|
|
931
931
|
if (err) return reject(err);
|
|
932
932
|
resolve({ bytesWritten, buffers: buffers2 });
|
|
933
933
|
});
|
|
934
934
|
});
|
|
935
935
|
};
|
|
936
|
-
if (typeof
|
|
937
|
-
exports2.realpath.native = u(
|
|
936
|
+
if (typeof fs12.realpath.native === "function") {
|
|
937
|
+
exports2.realpath.native = u(fs12.realpath.native);
|
|
938
938
|
} else {
|
|
939
939
|
process.emitWarning(
|
|
940
940
|
"fs.realpath.native is not a function. Is fs being monkey-patched?",
|
|
@@ -949,10 +949,10 @@ var require_fs = __commonJS({
|
|
|
949
949
|
var require_utils = __commonJS({
|
|
950
950
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/mkdirs/utils.js"(exports2, module2) {
|
|
951
951
|
"use strict";
|
|
952
|
-
var
|
|
952
|
+
var path13 = require("path");
|
|
953
953
|
module2.exports.checkPath = function checkPath(pth) {
|
|
954
954
|
if (process.platform === "win32") {
|
|
955
|
-
const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(
|
|
955
|
+
const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path13.parse(pth).root, ""));
|
|
956
956
|
if (pathHasInvalidWinCharacters) {
|
|
957
957
|
const error = new Error(`Path contains invalid characters: ${pth}`);
|
|
958
958
|
error.code = "EINVAL";
|
|
@@ -967,7 +967,7 @@ var require_utils = __commonJS({
|
|
|
967
967
|
var require_make_dir = __commonJS({
|
|
968
968
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/mkdirs/make-dir.js"(exports2, module2) {
|
|
969
969
|
"use strict";
|
|
970
|
-
var
|
|
970
|
+
var fs12 = require_fs();
|
|
971
971
|
var { checkPath } = require_utils();
|
|
972
972
|
var getMode = (options2) => {
|
|
973
973
|
const defaults = { mode: 511 };
|
|
@@ -976,14 +976,14 @@ var require_make_dir = __commonJS({
|
|
|
976
976
|
};
|
|
977
977
|
module2.exports.makeDir = async (dir, options2) => {
|
|
978
978
|
checkPath(dir);
|
|
979
|
-
return
|
|
979
|
+
return fs12.mkdir(dir, {
|
|
980
980
|
mode: getMode(options2),
|
|
981
981
|
recursive: true
|
|
982
982
|
});
|
|
983
983
|
};
|
|
984
984
|
module2.exports.makeDirSync = (dir, options2) => {
|
|
985
985
|
checkPath(dir);
|
|
986
|
-
return
|
|
986
|
+
return fs12.mkdirSync(dir, {
|
|
987
987
|
mode: getMode(options2),
|
|
988
988
|
recursive: true
|
|
989
989
|
});
|
|
@@ -1015,13 +1015,13 @@ var require_path_exists = __commonJS({
|
|
|
1015
1015
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/path-exists/index.js"(exports2, module2) {
|
|
1016
1016
|
"use strict";
|
|
1017
1017
|
var u = require_universalify().fromPromise;
|
|
1018
|
-
var
|
|
1019
|
-
function pathExists(
|
|
1020
|
-
return
|
|
1018
|
+
var fs12 = require_fs();
|
|
1019
|
+
function pathExists(path13) {
|
|
1020
|
+
return fs12.access(path13).then(() => true).catch(() => false);
|
|
1021
1021
|
}
|
|
1022
1022
|
module2.exports = {
|
|
1023
1023
|
pathExists: u(pathExists),
|
|
1024
|
-
pathExistsSync:
|
|
1024
|
+
pathExistsSync: fs12.existsSync
|
|
1025
1025
|
};
|
|
1026
1026
|
}
|
|
1027
1027
|
});
|
|
@@ -1030,16 +1030,16 @@ var require_path_exists = __commonJS({
|
|
|
1030
1030
|
var require_utimes = __commonJS({
|
|
1031
1031
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/util/utimes.js"(exports2, module2) {
|
|
1032
1032
|
"use strict";
|
|
1033
|
-
var
|
|
1033
|
+
var fs12 = require_fs();
|
|
1034
1034
|
var u = require_universalify().fromPromise;
|
|
1035
|
-
async function utimesMillis(
|
|
1036
|
-
const fd = await
|
|
1035
|
+
async function utimesMillis(path13, atime, mtime) {
|
|
1036
|
+
const fd = await fs12.open(path13, "r+");
|
|
1037
1037
|
let closeErr = null;
|
|
1038
1038
|
try {
|
|
1039
|
-
await
|
|
1039
|
+
await fs12.futimes(fd, atime, mtime);
|
|
1040
1040
|
} finally {
|
|
1041
1041
|
try {
|
|
1042
|
-
await
|
|
1042
|
+
await fs12.close(fd);
|
|
1043
1043
|
} catch (e) {
|
|
1044
1044
|
closeErr = e;
|
|
1045
1045
|
}
|
|
@@ -1048,10 +1048,10 @@ var require_utimes = __commonJS({
|
|
|
1048
1048
|
throw closeErr;
|
|
1049
1049
|
}
|
|
1050
1050
|
}
|
|
1051
|
-
function utimesMillisSync(
|
|
1052
|
-
const fd =
|
|
1053
|
-
|
|
1054
|
-
return
|
|
1051
|
+
function utimesMillisSync(path13, atime, mtime) {
|
|
1052
|
+
const fd = fs12.openSync(path13, "r+");
|
|
1053
|
+
fs12.futimesSync(fd, atime, mtime);
|
|
1054
|
+
return fs12.closeSync(fd);
|
|
1055
1055
|
}
|
|
1056
1056
|
module2.exports = {
|
|
1057
1057
|
utimesMillis: u(utimesMillis),
|
|
@@ -1064,11 +1064,11 @@ var require_utimes = __commonJS({
|
|
|
1064
1064
|
var require_stat = __commonJS({
|
|
1065
1065
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/util/stat.js"(exports2, module2) {
|
|
1066
1066
|
"use strict";
|
|
1067
|
-
var
|
|
1068
|
-
var
|
|
1067
|
+
var fs12 = require_fs();
|
|
1068
|
+
var path13 = require("path");
|
|
1069
1069
|
var u = require_universalify().fromPromise;
|
|
1070
1070
|
function getStats(src, dest, opts) {
|
|
1071
|
-
const statFunc = opts.dereference ? (file) =>
|
|
1071
|
+
const statFunc = opts.dereference ? (file) => fs12.stat(file, { bigint: true }) : (file) => fs12.lstat(file, { bigint: true });
|
|
1072
1072
|
return Promise.all([
|
|
1073
1073
|
statFunc(src),
|
|
1074
1074
|
statFunc(dest).catch((err) => {
|
|
@@ -1079,7 +1079,7 @@ var require_stat = __commonJS({
|
|
|
1079
1079
|
}
|
|
1080
1080
|
function getStatsSync(src, dest, opts) {
|
|
1081
1081
|
let destStat;
|
|
1082
|
-
const statFunc = opts.dereference ? (file) =>
|
|
1082
|
+
const statFunc = opts.dereference ? (file) => fs12.statSync(file, { bigint: true }) : (file) => fs12.lstatSync(file, { bigint: true });
|
|
1083
1083
|
const srcStat = statFunc(src);
|
|
1084
1084
|
try {
|
|
1085
1085
|
destStat = statFunc(dest);
|
|
@@ -1093,8 +1093,8 @@ var require_stat = __commonJS({
|
|
|
1093
1093
|
const { srcStat, destStat } = await getStats(src, dest, opts);
|
|
1094
1094
|
if (destStat) {
|
|
1095
1095
|
if (areIdentical(srcStat, destStat)) {
|
|
1096
|
-
const srcBaseName =
|
|
1097
|
-
const destBaseName =
|
|
1096
|
+
const srcBaseName = path13.basename(src);
|
|
1097
|
+
const destBaseName = path13.basename(dest);
|
|
1098
1098
|
if (funcName === "move" && srcBaseName !== destBaseName && srcBaseName.toLowerCase() === destBaseName.toLowerCase()) {
|
|
1099
1099
|
return { srcStat, destStat, isChangingCase: true };
|
|
1100
1100
|
}
|
|
@@ -1116,8 +1116,8 @@ var require_stat = __commonJS({
|
|
|
1116
1116
|
const { srcStat, destStat } = getStatsSync(src, dest, opts);
|
|
1117
1117
|
if (destStat) {
|
|
1118
1118
|
if (areIdentical(srcStat, destStat)) {
|
|
1119
|
-
const srcBaseName =
|
|
1120
|
-
const destBaseName =
|
|
1119
|
+
const srcBaseName = path13.basename(src);
|
|
1120
|
+
const destBaseName = path13.basename(dest);
|
|
1121
1121
|
if (funcName === "move" && srcBaseName !== destBaseName && srcBaseName.toLowerCase() === destBaseName.toLowerCase()) {
|
|
1122
1122
|
return { srcStat, destStat, isChangingCase: true };
|
|
1123
1123
|
}
|
|
@@ -1136,12 +1136,12 @@ var require_stat = __commonJS({
|
|
|
1136
1136
|
return { srcStat, destStat };
|
|
1137
1137
|
}
|
|
1138
1138
|
async function checkParentPaths(src, srcStat, dest, funcName) {
|
|
1139
|
-
const srcParent =
|
|
1140
|
-
const destParent =
|
|
1141
|
-
if (destParent === srcParent || destParent ===
|
|
1139
|
+
const srcParent = path13.resolve(path13.dirname(src));
|
|
1140
|
+
const destParent = path13.resolve(path13.dirname(dest));
|
|
1141
|
+
if (destParent === srcParent || destParent === path13.parse(destParent).root) return;
|
|
1142
1142
|
let destStat;
|
|
1143
1143
|
try {
|
|
1144
|
-
destStat = await
|
|
1144
|
+
destStat = await fs12.stat(destParent, { bigint: true });
|
|
1145
1145
|
} catch (err) {
|
|
1146
1146
|
if (err.code === "ENOENT") return;
|
|
1147
1147
|
throw err;
|
|
@@ -1152,12 +1152,12 @@ var require_stat = __commonJS({
|
|
|
1152
1152
|
return checkParentPaths(src, srcStat, destParent, funcName);
|
|
1153
1153
|
}
|
|
1154
1154
|
function checkParentPathsSync(src, srcStat, dest, funcName) {
|
|
1155
|
-
const srcParent =
|
|
1156
|
-
const destParent =
|
|
1157
|
-
if (destParent === srcParent || destParent ===
|
|
1155
|
+
const srcParent = path13.resolve(path13.dirname(src));
|
|
1156
|
+
const destParent = path13.resolve(path13.dirname(dest));
|
|
1157
|
+
if (destParent === srcParent || destParent === path13.parse(destParent).root) return;
|
|
1158
1158
|
let destStat;
|
|
1159
1159
|
try {
|
|
1160
|
-
destStat =
|
|
1160
|
+
destStat = fs12.statSync(destParent, { bigint: true });
|
|
1161
1161
|
} catch (err) {
|
|
1162
1162
|
if (err.code === "ENOENT") return;
|
|
1163
1163
|
throw err;
|
|
@@ -1171,8 +1171,8 @@ var require_stat = __commonJS({
|
|
|
1171
1171
|
return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev;
|
|
1172
1172
|
}
|
|
1173
1173
|
function isSrcSubdir(src, dest) {
|
|
1174
|
-
const srcArr =
|
|
1175
|
-
const destArr =
|
|
1174
|
+
const srcArr = path13.resolve(src).split(path13.sep).filter((i) => i);
|
|
1175
|
+
const destArr = path13.resolve(dest).split(path13.sep).filter((i) => i);
|
|
1176
1176
|
return srcArr.every((cur, i) => destArr[i] === cur);
|
|
1177
1177
|
}
|
|
1178
1178
|
function errMsg(src, dest, funcName) {
|
|
@@ -1196,8 +1196,8 @@ var require_stat = __commonJS({
|
|
|
1196
1196
|
var require_copy = __commonJS({
|
|
1197
1197
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/copy/copy.js"(exports2, module2) {
|
|
1198
1198
|
"use strict";
|
|
1199
|
-
var
|
|
1200
|
-
var
|
|
1199
|
+
var fs12 = require_fs();
|
|
1200
|
+
var path13 = require("path");
|
|
1201
1201
|
var { mkdirs } = require_mkdirs();
|
|
1202
1202
|
var { pathExists } = require_path_exists();
|
|
1203
1203
|
var { utimesMillis } = require_utimes();
|
|
@@ -1219,7 +1219,7 @@ var require_copy = __commonJS({
|
|
|
1219
1219
|
await stat.checkParentPaths(src, srcStat, dest, "copy");
|
|
1220
1220
|
const include = await runFilter(src, dest, opts);
|
|
1221
1221
|
if (!include) return;
|
|
1222
|
-
const destParent =
|
|
1222
|
+
const destParent = path13.dirname(dest);
|
|
1223
1223
|
const dirExists = await pathExists(destParent);
|
|
1224
1224
|
if (!dirExists) {
|
|
1225
1225
|
await mkdirs(destParent);
|
|
@@ -1231,7 +1231,7 @@ var require_copy = __commonJS({
|
|
|
1231
1231
|
return opts.filter(src, dest);
|
|
1232
1232
|
}
|
|
1233
1233
|
async function getStatsAndPerformCopy(destStat, src, dest, opts) {
|
|
1234
|
-
const statFn = opts.dereference ?
|
|
1234
|
+
const statFn = opts.dereference ? fs12.stat : fs12.lstat;
|
|
1235
1235
|
const srcStat = await statFn(src);
|
|
1236
1236
|
if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts);
|
|
1237
1237
|
if (srcStat.isFile() || srcStat.isCharacterDevice() || srcStat.isBlockDevice()) return onFile(srcStat, destStat, src, dest, opts);
|
|
@@ -1243,7 +1243,7 @@ var require_copy = __commonJS({
|
|
|
1243
1243
|
async function onFile(srcStat, destStat, src, dest, opts) {
|
|
1244
1244
|
if (!destStat) return copyFile(srcStat, src, dest, opts);
|
|
1245
1245
|
if (opts.overwrite) {
|
|
1246
|
-
await
|
|
1246
|
+
await fs12.unlink(dest);
|
|
1247
1247
|
return copyFile(srcStat, src, dest, opts);
|
|
1248
1248
|
}
|
|
1249
1249
|
if (opts.errorOnExist) {
|
|
@@ -1251,30 +1251,30 @@ var require_copy = __commonJS({
|
|
|
1251
1251
|
}
|
|
1252
1252
|
}
|
|
1253
1253
|
async function copyFile(srcStat, src, dest, opts) {
|
|
1254
|
-
await
|
|
1254
|
+
await fs12.copyFile(src, dest);
|
|
1255
1255
|
if (opts.preserveTimestamps) {
|
|
1256
1256
|
if (fileIsNotWritable(srcStat.mode)) {
|
|
1257
1257
|
await makeFileWritable(dest, srcStat.mode);
|
|
1258
1258
|
}
|
|
1259
|
-
const updatedSrcStat = await
|
|
1259
|
+
const updatedSrcStat = await fs12.stat(src);
|
|
1260
1260
|
await utimesMillis(dest, updatedSrcStat.atime, updatedSrcStat.mtime);
|
|
1261
1261
|
}
|
|
1262
|
-
return
|
|
1262
|
+
return fs12.chmod(dest, srcStat.mode);
|
|
1263
1263
|
}
|
|
1264
1264
|
function fileIsNotWritable(srcMode) {
|
|
1265
1265
|
return (srcMode & 128) === 0;
|
|
1266
1266
|
}
|
|
1267
1267
|
function makeFileWritable(dest, srcMode) {
|
|
1268
|
-
return
|
|
1268
|
+
return fs12.chmod(dest, srcMode | 128);
|
|
1269
1269
|
}
|
|
1270
1270
|
async function onDir(srcStat, destStat, src, dest, opts) {
|
|
1271
1271
|
if (!destStat) {
|
|
1272
|
-
await
|
|
1272
|
+
await fs12.mkdir(dest);
|
|
1273
1273
|
}
|
|
1274
1274
|
const promises = [];
|
|
1275
|
-
for await (const item of await
|
|
1276
|
-
const srcItem =
|
|
1277
|
-
const destItem =
|
|
1275
|
+
for await (const item of await fs12.opendir(src)) {
|
|
1276
|
+
const srcItem = path13.join(src, item.name);
|
|
1277
|
+
const destItem = path13.join(dest, item.name);
|
|
1278
1278
|
promises.push(
|
|
1279
1279
|
runFilter(srcItem, destItem, opts).then((include) => {
|
|
1280
1280
|
if (include) {
|
|
@@ -1287,26 +1287,26 @@ var require_copy = __commonJS({
|
|
|
1287
1287
|
}
|
|
1288
1288
|
await Promise.all(promises);
|
|
1289
1289
|
if (!destStat) {
|
|
1290
|
-
await
|
|
1290
|
+
await fs12.chmod(dest, srcStat.mode);
|
|
1291
1291
|
}
|
|
1292
1292
|
}
|
|
1293
1293
|
async function onLink(destStat, src, dest, opts) {
|
|
1294
|
-
let resolvedSrc = await
|
|
1294
|
+
let resolvedSrc = await fs12.readlink(src);
|
|
1295
1295
|
if (opts.dereference) {
|
|
1296
|
-
resolvedSrc =
|
|
1296
|
+
resolvedSrc = path13.resolve(process.cwd(), resolvedSrc);
|
|
1297
1297
|
}
|
|
1298
1298
|
if (!destStat) {
|
|
1299
|
-
return
|
|
1299
|
+
return fs12.symlink(resolvedSrc, dest);
|
|
1300
1300
|
}
|
|
1301
1301
|
let resolvedDest = null;
|
|
1302
1302
|
try {
|
|
1303
|
-
resolvedDest = await
|
|
1303
|
+
resolvedDest = await fs12.readlink(dest);
|
|
1304
1304
|
} catch (e) {
|
|
1305
|
-
if (e.code === "EINVAL" || e.code === "UNKNOWN") return
|
|
1305
|
+
if (e.code === "EINVAL" || e.code === "UNKNOWN") return fs12.symlink(resolvedSrc, dest);
|
|
1306
1306
|
throw e;
|
|
1307
1307
|
}
|
|
1308
1308
|
if (opts.dereference) {
|
|
1309
|
-
resolvedDest =
|
|
1309
|
+
resolvedDest = path13.resolve(process.cwd(), resolvedDest);
|
|
1310
1310
|
}
|
|
1311
1311
|
if (stat.isSrcSubdir(resolvedSrc, resolvedDest)) {
|
|
1312
1312
|
throw new Error(`Cannot copy '${resolvedSrc}' to a subdirectory of itself, '${resolvedDest}'.`);
|
|
@@ -1314,8 +1314,8 @@ var require_copy = __commonJS({
|
|
|
1314
1314
|
if (stat.isSrcSubdir(resolvedDest, resolvedSrc)) {
|
|
1315
1315
|
throw new Error(`Cannot overwrite '${resolvedDest}' with '${resolvedSrc}'.`);
|
|
1316
1316
|
}
|
|
1317
|
-
await
|
|
1318
|
-
return
|
|
1317
|
+
await fs12.unlink(dest);
|
|
1318
|
+
return fs12.symlink(resolvedSrc, dest);
|
|
1319
1319
|
}
|
|
1320
1320
|
module2.exports = copy2;
|
|
1321
1321
|
}
|
|
@@ -1325,8 +1325,8 @@ var require_copy = __commonJS({
|
|
|
1325
1325
|
var require_copy_sync = __commonJS({
|
|
1326
1326
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/copy/copy-sync.js"(exports2, module2) {
|
|
1327
1327
|
"use strict";
|
|
1328
|
-
var
|
|
1329
|
-
var
|
|
1328
|
+
var fs12 = require_graceful_fs();
|
|
1329
|
+
var path13 = require("path");
|
|
1330
1330
|
var mkdirsSync = require_mkdirs().mkdirsSync;
|
|
1331
1331
|
var utimesMillisSync = require_utimes().utimesMillisSync;
|
|
1332
1332
|
var stat = require_stat();
|
|
@@ -1347,12 +1347,12 @@ var require_copy_sync = __commonJS({
|
|
|
1347
1347
|
const { srcStat, destStat } = stat.checkPathsSync(src, dest, "copy", opts);
|
|
1348
1348
|
stat.checkParentPathsSync(src, srcStat, dest, "copy");
|
|
1349
1349
|
if (opts.filter && !opts.filter(src, dest)) return;
|
|
1350
|
-
const destParent =
|
|
1351
|
-
if (!
|
|
1350
|
+
const destParent = path13.dirname(dest);
|
|
1351
|
+
if (!fs12.existsSync(destParent)) mkdirsSync(destParent);
|
|
1352
1352
|
return getStats(destStat, src, dest, opts);
|
|
1353
1353
|
}
|
|
1354
1354
|
function getStats(destStat, src, dest, opts) {
|
|
1355
|
-
const statSync = opts.dereference ?
|
|
1355
|
+
const statSync = opts.dereference ? fs12.statSync : fs12.lstatSync;
|
|
1356
1356
|
const srcStat = statSync(src);
|
|
1357
1357
|
if (srcStat.isDirectory()) return onDir(srcStat, destStat, src, dest, opts);
|
|
1358
1358
|
else if (srcStat.isFile() || srcStat.isCharacterDevice() || srcStat.isBlockDevice()) return onFile(srcStat, destStat, src, dest, opts);
|
|
@@ -1367,14 +1367,14 @@ var require_copy_sync = __commonJS({
|
|
|
1367
1367
|
}
|
|
1368
1368
|
function mayCopyFile(srcStat, src, dest, opts) {
|
|
1369
1369
|
if (opts.overwrite) {
|
|
1370
|
-
|
|
1370
|
+
fs12.unlinkSync(dest);
|
|
1371
1371
|
return copyFile(srcStat, src, dest, opts);
|
|
1372
1372
|
} else if (opts.errorOnExist) {
|
|
1373
1373
|
throw new Error(`'${dest}' already exists`);
|
|
1374
1374
|
}
|
|
1375
1375
|
}
|
|
1376
1376
|
function copyFile(srcStat, src, dest, opts) {
|
|
1377
|
-
|
|
1377
|
+
fs12.copyFileSync(src, dest);
|
|
1378
1378
|
if (opts.preserveTimestamps) handleTimestamps(srcStat.mode, src, dest);
|
|
1379
1379
|
return setDestMode(dest, srcStat.mode);
|
|
1380
1380
|
}
|
|
@@ -1389,10 +1389,10 @@ var require_copy_sync = __commonJS({
|
|
|
1389
1389
|
return setDestMode(dest, srcMode | 128);
|
|
1390
1390
|
}
|
|
1391
1391
|
function setDestMode(dest, srcMode) {
|
|
1392
|
-
return
|
|
1392
|
+
return fs12.chmodSync(dest, srcMode);
|
|
1393
1393
|
}
|
|
1394
1394
|
function setDestTimestamps(src, dest) {
|
|
1395
|
-
const updatedSrcStat =
|
|
1395
|
+
const updatedSrcStat = fs12.statSync(src);
|
|
1396
1396
|
return utimesMillisSync(dest, updatedSrcStat.atime, updatedSrcStat.mtime);
|
|
1397
1397
|
}
|
|
1398
1398
|
function onDir(srcStat, destStat, src, dest, opts) {
|
|
@@ -1400,12 +1400,12 @@ var require_copy_sync = __commonJS({
|
|
|
1400
1400
|
return copyDir(src, dest, opts);
|
|
1401
1401
|
}
|
|
1402
1402
|
function mkDirAndCopy(srcMode, src, dest, opts) {
|
|
1403
|
-
|
|
1403
|
+
fs12.mkdirSync(dest);
|
|
1404
1404
|
copyDir(src, dest, opts);
|
|
1405
1405
|
return setDestMode(dest, srcMode);
|
|
1406
1406
|
}
|
|
1407
1407
|
function copyDir(src, dest, opts) {
|
|
1408
|
-
const dir =
|
|
1408
|
+
const dir = fs12.opendirSync(src);
|
|
1409
1409
|
try {
|
|
1410
1410
|
let dirent;
|
|
1411
1411
|
while ((dirent = dir.readSync()) !== null) {
|
|
@@ -1416,29 +1416,29 @@ var require_copy_sync = __commonJS({
|
|
|
1416
1416
|
}
|
|
1417
1417
|
}
|
|
1418
1418
|
function copyDirItem(item, src, dest, opts) {
|
|
1419
|
-
const srcItem =
|
|
1420
|
-
const destItem =
|
|
1419
|
+
const srcItem = path13.join(src, item);
|
|
1420
|
+
const destItem = path13.join(dest, item);
|
|
1421
1421
|
if (opts.filter && !opts.filter(srcItem, destItem)) return;
|
|
1422
1422
|
const { destStat } = stat.checkPathsSync(srcItem, destItem, "copy", opts);
|
|
1423
1423
|
return getStats(destStat, srcItem, destItem, opts);
|
|
1424
1424
|
}
|
|
1425
1425
|
function onLink(destStat, src, dest, opts) {
|
|
1426
|
-
let resolvedSrc =
|
|
1426
|
+
let resolvedSrc = fs12.readlinkSync(src);
|
|
1427
1427
|
if (opts.dereference) {
|
|
1428
|
-
resolvedSrc =
|
|
1428
|
+
resolvedSrc = path13.resolve(process.cwd(), resolvedSrc);
|
|
1429
1429
|
}
|
|
1430
1430
|
if (!destStat) {
|
|
1431
|
-
return
|
|
1431
|
+
return fs12.symlinkSync(resolvedSrc, dest);
|
|
1432
1432
|
} else {
|
|
1433
1433
|
let resolvedDest;
|
|
1434
1434
|
try {
|
|
1435
|
-
resolvedDest =
|
|
1435
|
+
resolvedDest = fs12.readlinkSync(dest);
|
|
1436
1436
|
} catch (err) {
|
|
1437
|
-
if (err.code === "EINVAL" || err.code === "UNKNOWN") return
|
|
1437
|
+
if (err.code === "EINVAL" || err.code === "UNKNOWN") return fs12.symlinkSync(resolvedSrc, dest);
|
|
1438
1438
|
throw err;
|
|
1439
1439
|
}
|
|
1440
1440
|
if (opts.dereference) {
|
|
1441
|
-
resolvedDest =
|
|
1441
|
+
resolvedDest = path13.resolve(process.cwd(), resolvedDest);
|
|
1442
1442
|
}
|
|
1443
1443
|
if (stat.isSrcSubdir(resolvedSrc, resolvedDest)) {
|
|
1444
1444
|
throw new Error(`Cannot copy '${resolvedSrc}' to a subdirectory of itself, '${resolvedDest}'.`);
|
|
@@ -1450,8 +1450,8 @@ var require_copy_sync = __commonJS({
|
|
|
1450
1450
|
}
|
|
1451
1451
|
}
|
|
1452
1452
|
function copyLink(resolvedSrc, dest) {
|
|
1453
|
-
|
|
1454
|
-
return
|
|
1453
|
+
fs12.unlinkSync(dest);
|
|
1454
|
+
return fs12.symlinkSync(resolvedSrc, dest);
|
|
1455
1455
|
}
|
|
1456
1456
|
module2.exports = copySync;
|
|
1457
1457
|
}
|
|
@@ -1473,13 +1473,13 @@ var require_copy2 = __commonJS({
|
|
|
1473
1473
|
var require_remove = __commonJS({
|
|
1474
1474
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/remove/index.js"(exports2, module2) {
|
|
1475
1475
|
"use strict";
|
|
1476
|
-
var
|
|
1476
|
+
var fs12 = require_graceful_fs();
|
|
1477
1477
|
var u = require_universalify().fromCallback;
|
|
1478
|
-
function remove(
|
|
1479
|
-
|
|
1478
|
+
function remove(path13, callback) {
|
|
1479
|
+
fs12.rm(path13, { recursive: true, force: true }, callback);
|
|
1480
1480
|
}
|
|
1481
|
-
function removeSync(
|
|
1482
|
-
|
|
1481
|
+
function removeSync(path13) {
|
|
1482
|
+
fs12.rmSync(path13, { recursive: true, force: true });
|
|
1483
1483
|
}
|
|
1484
1484
|
module2.exports = {
|
|
1485
1485
|
remove: u(remove),
|
|
@@ -1493,28 +1493,28 @@ var require_empty = __commonJS({
|
|
|
1493
1493
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/empty/index.js"(exports2, module2) {
|
|
1494
1494
|
"use strict";
|
|
1495
1495
|
var u = require_universalify().fromPromise;
|
|
1496
|
-
var
|
|
1497
|
-
var
|
|
1496
|
+
var fs12 = require_fs();
|
|
1497
|
+
var path13 = require("path");
|
|
1498
1498
|
var mkdir = require_mkdirs();
|
|
1499
1499
|
var remove = require_remove();
|
|
1500
1500
|
var emptyDir = u(async function emptyDir2(dir) {
|
|
1501
1501
|
let items;
|
|
1502
1502
|
try {
|
|
1503
|
-
items = await
|
|
1503
|
+
items = await fs12.readdir(dir);
|
|
1504
1504
|
} catch {
|
|
1505
1505
|
return mkdir.mkdirs(dir);
|
|
1506
1506
|
}
|
|
1507
|
-
return Promise.all(items.map((item) => remove.remove(
|
|
1507
|
+
return Promise.all(items.map((item) => remove.remove(path13.join(dir, item))));
|
|
1508
1508
|
});
|
|
1509
1509
|
function emptyDirSync(dir) {
|
|
1510
1510
|
let items;
|
|
1511
1511
|
try {
|
|
1512
|
-
items =
|
|
1512
|
+
items = fs12.readdirSync(dir);
|
|
1513
1513
|
} catch {
|
|
1514
1514
|
return mkdir.mkdirsSync(dir);
|
|
1515
1515
|
}
|
|
1516
1516
|
items.forEach((item) => {
|
|
1517
|
-
item =
|
|
1517
|
+
item = path13.join(dir, item);
|
|
1518
1518
|
remove.removeSync(item);
|
|
1519
1519
|
});
|
|
1520
1520
|
}
|
|
@@ -1532,52 +1532,52 @@ var require_file = __commonJS({
|
|
|
1532
1532
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/ensure/file.js"(exports2, module2) {
|
|
1533
1533
|
"use strict";
|
|
1534
1534
|
var u = require_universalify().fromPromise;
|
|
1535
|
-
var
|
|
1536
|
-
var
|
|
1535
|
+
var path13 = require("path");
|
|
1536
|
+
var fs12 = require_fs();
|
|
1537
1537
|
var mkdir = require_mkdirs();
|
|
1538
1538
|
async function createFile(file) {
|
|
1539
1539
|
let stats;
|
|
1540
1540
|
try {
|
|
1541
|
-
stats = await
|
|
1541
|
+
stats = await fs12.stat(file);
|
|
1542
1542
|
} catch {
|
|
1543
1543
|
}
|
|
1544
1544
|
if (stats && stats.isFile()) return;
|
|
1545
|
-
const dir =
|
|
1545
|
+
const dir = path13.dirname(file);
|
|
1546
1546
|
let dirStats = null;
|
|
1547
1547
|
try {
|
|
1548
|
-
dirStats = await
|
|
1548
|
+
dirStats = await fs12.stat(dir);
|
|
1549
1549
|
} catch (err) {
|
|
1550
1550
|
if (err.code === "ENOENT") {
|
|
1551
1551
|
await mkdir.mkdirs(dir);
|
|
1552
|
-
await
|
|
1552
|
+
await fs12.writeFile(file, "");
|
|
1553
1553
|
return;
|
|
1554
1554
|
} else {
|
|
1555
1555
|
throw err;
|
|
1556
1556
|
}
|
|
1557
1557
|
}
|
|
1558
1558
|
if (dirStats.isDirectory()) {
|
|
1559
|
-
await
|
|
1559
|
+
await fs12.writeFile(file, "");
|
|
1560
1560
|
} else {
|
|
1561
|
-
await
|
|
1561
|
+
await fs12.readdir(dir);
|
|
1562
1562
|
}
|
|
1563
1563
|
}
|
|
1564
1564
|
function createFileSync(file) {
|
|
1565
1565
|
let stats;
|
|
1566
1566
|
try {
|
|
1567
|
-
stats =
|
|
1567
|
+
stats = fs12.statSync(file);
|
|
1568
1568
|
} catch {
|
|
1569
1569
|
}
|
|
1570
1570
|
if (stats && stats.isFile()) return;
|
|
1571
|
-
const dir =
|
|
1571
|
+
const dir = path13.dirname(file);
|
|
1572
1572
|
try {
|
|
1573
|
-
if (!
|
|
1574
|
-
|
|
1573
|
+
if (!fs12.statSync(dir).isDirectory()) {
|
|
1574
|
+
fs12.readdirSync(dir);
|
|
1575
1575
|
}
|
|
1576
1576
|
} catch (err) {
|
|
1577
1577
|
if (err && err.code === "ENOENT") mkdir.mkdirsSync(dir);
|
|
1578
1578
|
else throw err;
|
|
1579
1579
|
}
|
|
1580
|
-
|
|
1580
|
+
fs12.writeFileSync(file, "");
|
|
1581
1581
|
}
|
|
1582
1582
|
module2.exports = {
|
|
1583
1583
|
createFile: u(createFile),
|
|
@@ -1591,50 +1591,50 @@ var require_link = __commonJS({
|
|
|
1591
1591
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/ensure/link.js"(exports2, module2) {
|
|
1592
1592
|
"use strict";
|
|
1593
1593
|
var u = require_universalify().fromPromise;
|
|
1594
|
-
var
|
|
1595
|
-
var
|
|
1594
|
+
var path13 = require("path");
|
|
1595
|
+
var fs12 = require_fs();
|
|
1596
1596
|
var mkdir = require_mkdirs();
|
|
1597
1597
|
var { pathExists } = require_path_exists();
|
|
1598
1598
|
var { areIdentical } = require_stat();
|
|
1599
1599
|
async function createLink(srcpath, dstpath) {
|
|
1600
1600
|
let dstStat;
|
|
1601
1601
|
try {
|
|
1602
|
-
dstStat = await
|
|
1602
|
+
dstStat = await fs12.lstat(dstpath);
|
|
1603
1603
|
} catch {
|
|
1604
1604
|
}
|
|
1605
1605
|
let srcStat;
|
|
1606
1606
|
try {
|
|
1607
|
-
srcStat = await
|
|
1607
|
+
srcStat = await fs12.lstat(srcpath);
|
|
1608
1608
|
} catch (err) {
|
|
1609
1609
|
err.message = err.message.replace("lstat", "ensureLink");
|
|
1610
1610
|
throw err;
|
|
1611
1611
|
}
|
|
1612
1612
|
if (dstStat && areIdentical(srcStat, dstStat)) return;
|
|
1613
|
-
const dir =
|
|
1613
|
+
const dir = path13.dirname(dstpath);
|
|
1614
1614
|
const dirExists = await pathExists(dir);
|
|
1615
1615
|
if (!dirExists) {
|
|
1616
1616
|
await mkdir.mkdirs(dir);
|
|
1617
1617
|
}
|
|
1618
|
-
await
|
|
1618
|
+
await fs12.link(srcpath, dstpath);
|
|
1619
1619
|
}
|
|
1620
1620
|
function createLinkSync(srcpath, dstpath) {
|
|
1621
1621
|
let dstStat;
|
|
1622
1622
|
try {
|
|
1623
|
-
dstStat =
|
|
1623
|
+
dstStat = fs12.lstatSync(dstpath);
|
|
1624
1624
|
} catch {
|
|
1625
1625
|
}
|
|
1626
1626
|
try {
|
|
1627
|
-
const srcStat =
|
|
1627
|
+
const srcStat = fs12.lstatSync(srcpath);
|
|
1628
1628
|
if (dstStat && areIdentical(srcStat, dstStat)) return;
|
|
1629
1629
|
} catch (err) {
|
|
1630
1630
|
err.message = err.message.replace("lstat", "ensureLink");
|
|
1631
1631
|
throw err;
|
|
1632
1632
|
}
|
|
1633
|
-
const dir =
|
|
1634
|
-
const dirExists =
|
|
1635
|
-
if (dirExists) return
|
|
1633
|
+
const dir = path13.dirname(dstpath);
|
|
1634
|
+
const dirExists = fs12.existsSync(dir);
|
|
1635
|
+
if (dirExists) return fs12.linkSync(srcpath, dstpath);
|
|
1636
1636
|
mkdir.mkdirsSync(dir);
|
|
1637
|
-
return
|
|
1637
|
+
return fs12.linkSync(srcpath, dstpath);
|
|
1638
1638
|
}
|
|
1639
1639
|
module2.exports = {
|
|
1640
1640
|
createLink: u(createLink),
|
|
@@ -1647,14 +1647,14 @@ var require_link = __commonJS({
|
|
|
1647
1647
|
var require_symlink_paths = __commonJS({
|
|
1648
1648
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/ensure/symlink-paths.js"(exports2, module2) {
|
|
1649
1649
|
"use strict";
|
|
1650
|
-
var
|
|
1651
|
-
var
|
|
1650
|
+
var path13 = require("path");
|
|
1651
|
+
var fs12 = require_fs();
|
|
1652
1652
|
var { pathExists } = require_path_exists();
|
|
1653
1653
|
var u = require_universalify().fromPromise;
|
|
1654
1654
|
async function symlinkPaths(srcpath, dstpath) {
|
|
1655
|
-
if (
|
|
1655
|
+
if (path13.isAbsolute(srcpath)) {
|
|
1656
1656
|
try {
|
|
1657
|
-
await
|
|
1657
|
+
await fs12.lstat(srcpath);
|
|
1658
1658
|
} catch (err) {
|
|
1659
1659
|
err.message = err.message.replace("lstat", "ensureSymlink");
|
|
1660
1660
|
throw err;
|
|
@@ -1664,8 +1664,8 @@ var require_symlink_paths = __commonJS({
|
|
|
1664
1664
|
toDst: srcpath
|
|
1665
1665
|
};
|
|
1666
1666
|
}
|
|
1667
|
-
const dstdir =
|
|
1668
|
-
const relativeToDst =
|
|
1667
|
+
const dstdir = path13.dirname(dstpath);
|
|
1668
|
+
const relativeToDst = path13.join(dstdir, srcpath);
|
|
1669
1669
|
const exists = await pathExists(relativeToDst);
|
|
1670
1670
|
if (exists) {
|
|
1671
1671
|
return {
|
|
@@ -1674,39 +1674,39 @@ var require_symlink_paths = __commonJS({
|
|
|
1674
1674
|
};
|
|
1675
1675
|
}
|
|
1676
1676
|
try {
|
|
1677
|
-
await
|
|
1677
|
+
await fs12.lstat(srcpath);
|
|
1678
1678
|
} catch (err) {
|
|
1679
1679
|
err.message = err.message.replace("lstat", "ensureSymlink");
|
|
1680
1680
|
throw err;
|
|
1681
1681
|
}
|
|
1682
1682
|
return {
|
|
1683
1683
|
toCwd: srcpath,
|
|
1684
|
-
toDst:
|
|
1684
|
+
toDst: path13.relative(dstdir, srcpath)
|
|
1685
1685
|
};
|
|
1686
1686
|
}
|
|
1687
1687
|
function symlinkPathsSync(srcpath, dstpath) {
|
|
1688
|
-
if (
|
|
1689
|
-
const exists2 =
|
|
1688
|
+
if (path13.isAbsolute(srcpath)) {
|
|
1689
|
+
const exists2 = fs12.existsSync(srcpath);
|
|
1690
1690
|
if (!exists2) throw new Error("absolute srcpath does not exist");
|
|
1691
1691
|
return {
|
|
1692
1692
|
toCwd: srcpath,
|
|
1693
1693
|
toDst: srcpath
|
|
1694
1694
|
};
|
|
1695
1695
|
}
|
|
1696
|
-
const dstdir =
|
|
1697
|
-
const relativeToDst =
|
|
1698
|
-
const exists =
|
|
1696
|
+
const dstdir = path13.dirname(dstpath);
|
|
1697
|
+
const relativeToDst = path13.join(dstdir, srcpath);
|
|
1698
|
+
const exists = fs12.existsSync(relativeToDst);
|
|
1699
1699
|
if (exists) {
|
|
1700
1700
|
return {
|
|
1701
1701
|
toCwd: relativeToDst,
|
|
1702
1702
|
toDst: srcpath
|
|
1703
1703
|
};
|
|
1704
1704
|
}
|
|
1705
|
-
const srcExists =
|
|
1705
|
+
const srcExists = fs12.existsSync(srcpath);
|
|
1706
1706
|
if (!srcExists) throw new Error("relative srcpath does not exist");
|
|
1707
1707
|
return {
|
|
1708
1708
|
toCwd: srcpath,
|
|
1709
|
-
toDst:
|
|
1709
|
+
toDst: path13.relative(dstdir, srcpath)
|
|
1710
1710
|
};
|
|
1711
1711
|
}
|
|
1712
1712
|
module2.exports = {
|
|
@@ -1720,13 +1720,13 @@ var require_symlink_paths = __commonJS({
|
|
|
1720
1720
|
var require_symlink_type = __commonJS({
|
|
1721
1721
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/ensure/symlink-type.js"(exports2, module2) {
|
|
1722
1722
|
"use strict";
|
|
1723
|
-
var
|
|
1723
|
+
var fs12 = require_fs();
|
|
1724
1724
|
var u = require_universalify().fromPromise;
|
|
1725
1725
|
async function symlinkType(srcpath, type) {
|
|
1726
1726
|
if (type) return type;
|
|
1727
1727
|
let stats;
|
|
1728
1728
|
try {
|
|
1729
|
-
stats = await
|
|
1729
|
+
stats = await fs12.lstat(srcpath);
|
|
1730
1730
|
} catch {
|
|
1731
1731
|
return "file";
|
|
1732
1732
|
}
|
|
@@ -1736,7 +1736,7 @@ var require_symlink_type = __commonJS({
|
|
|
1736
1736
|
if (type) return type;
|
|
1737
1737
|
let stats;
|
|
1738
1738
|
try {
|
|
1739
|
-
stats =
|
|
1739
|
+
stats = fs12.lstatSync(srcpath);
|
|
1740
1740
|
} catch {
|
|
1741
1741
|
return "file";
|
|
1742
1742
|
}
|
|
@@ -1754,8 +1754,8 @@ var require_symlink = __commonJS({
|
|
|
1754
1754
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/ensure/symlink.js"(exports2, module2) {
|
|
1755
1755
|
"use strict";
|
|
1756
1756
|
var u = require_universalify().fromPromise;
|
|
1757
|
-
var
|
|
1758
|
-
var
|
|
1757
|
+
var path13 = require("path");
|
|
1758
|
+
var fs12 = require_fs();
|
|
1759
1759
|
var { mkdirs, mkdirsSync } = require_mkdirs();
|
|
1760
1760
|
var { symlinkPaths, symlinkPathsSync } = require_symlink_paths();
|
|
1761
1761
|
var { symlinkType, symlinkTypeSync } = require_symlink_type();
|
|
@@ -1764,44 +1764,44 @@ var require_symlink = __commonJS({
|
|
|
1764
1764
|
async function createSymlink(srcpath, dstpath, type) {
|
|
1765
1765
|
let stats;
|
|
1766
1766
|
try {
|
|
1767
|
-
stats = await
|
|
1767
|
+
stats = await fs12.lstat(dstpath);
|
|
1768
1768
|
} catch {
|
|
1769
1769
|
}
|
|
1770
1770
|
if (stats && stats.isSymbolicLink()) {
|
|
1771
1771
|
const [srcStat, dstStat] = await Promise.all([
|
|
1772
|
-
|
|
1773
|
-
|
|
1772
|
+
fs12.stat(srcpath),
|
|
1773
|
+
fs12.stat(dstpath)
|
|
1774
1774
|
]);
|
|
1775
1775
|
if (areIdentical(srcStat, dstStat)) return;
|
|
1776
1776
|
}
|
|
1777
1777
|
const relative = await symlinkPaths(srcpath, dstpath);
|
|
1778
1778
|
srcpath = relative.toDst;
|
|
1779
1779
|
const toType = await symlinkType(relative.toCwd, type);
|
|
1780
|
-
const dir =
|
|
1780
|
+
const dir = path13.dirname(dstpath);
|
|
1781
1781
|
if (!await pathExists(dir)) {
|
|
1782
1782
|
await mkdirs(dir);
|
|
1783
1783
|
}
|
|
1784
|
-
return
|
|
1784
|
+
return fs12.symlink(srcpath, dstpath, toType);
|
|
1785
1785
|
}
|
|
1786
1786
|
function createSymlinkSync(srcpath, dstpath, type) {
|
|
1787
1787
|
let stats;
|
|
1788
1788
|
try {
|
|
1789
|
-
stats =
|
|
1789
|
+
stats = fs12.lstatSync(dstpath);
|
|
1790
1790
|
} catch {
|
|
1791
1791
|
}
|
|
1792
1792
|
if (stats && stats.isSymbolicLink()) {
|
|
1793
|
-
const srcStat =
|
|
1794
|
-
const dstStat =
|
|
1793
|
+
const srcStat = fs12.statSync(srcpath);
|
|
1794
|
+
const dstStat = fs12.statSync(dstpath);
|
|
1795
1795
|
if (areIdentical(srcStat, dstStat)) return;
|
|
1796
1796
|
}
|
|
1797
1797
|
const relative = symlinkPathsSync(srcpath, dstpath);
|
|
1798
1798
|
srcpath = relative.toDst;
|
|
1799
1799
|
type = symlinkTypeSync(relative.toCwd, type);
|
|
1800
|
-
const dir =
|
|
1801
|
-
const exists =
|
|
1802
|
-
if (exists) return
|
|
1800
|
+
const dir = path13.dirname(dstpath);
|
|
1801
|
+
const exists = fs12.existsSync(dir);
|
|
1802
|
+
if (exists) return fs12.symlinkSync(srcpath, dstpath, type);
|
|
1803
1803
|
mkdirsSync(dir);
|
|
1804
|
-
return
|
|
1804
|
+
return fs12.symlinkSync(srcpath, dstpath, type);
|
|
1805
1805
|
}
|
|
1806
1806
|
module2.exports = {
|
|
1807
1807
|
createSymlink: u(createSymlink),
|
|
@@ -1868,9 +1868,9 @@ var require_jsonfile = __commonJS({
|
|
|
1868
1868
|
if (typeof options2 === "string") {
|
|
1869
1869
|
options2 = { encoding: options2 };
|
|
1870
1870
|
}
|
|
1871
|
-
const
|
|
1871
|
+
const fs12 = options2.fs || _fs;
|
|
1872
1872
|
const shouldThrow = "throws" in options2 ? options2.throws : true;
|
|
1873
|
-
let data = await universalify.fromCallback(
|
|
1873
|
+
let data = await universalify.fromCallback(fs12.readFile)(file, options2);
|
|
1874
1874
|
data = stripBom(data);
|
|
1875
1875
|
let obj;
|
|
1876
1876
|
try {
|
|
@@ -1890,10 +1890,10 @@ var require_jsonfile = __commonJS({
|
|
|
1890
1890
|
if (typeof options2 === "string") {
|
|
1891
1891
|
options2 = { encoding: options2 };
|
|
1892
1892
|
}
|
|
1893
|
-
const
|
|
1893
|
+
const fs12 = options2.fs || _fs;
|
|
1894
1894
|
const shouldThrow = "throws" in options2 ? options2.throws : true;
|
|
1895
1895
|
try {
|
|
1896
|
-
let content =
|
|
1896
|
+
let content = fs12.readFileSync(file, options2);
|
|
1897
1897
|
content = stripBom(content);
|
|
1898
1898
|
return JSON.parse(content, options2.reviver);
|
|
1899
1899
|
} catch (err) {
|
|
@@ -1906,15 +1906,15 @@ var require_jsonfile = __commonJS({
|
|
|
1906
1906
|
}
|
|
1907
1907
|
}
|
|
1908
1908
|
async function _writeFile(file, obj, options2 = {}) {
|
|
1909
|
-
const
|
|
1909
|
+
const fs12 = options2.fs || _fs;
|
|
1910
1910
|
const str = stringify2(obj, options2);
|
|
1911
|
-
await universalify.fromCallback(
|
|
1911
|
+
await universalify.fromCallback(fs12.writeFile)(file, str, options2);
|
|
1912
1912
|
}
|
|
1913
1913
|
var writeFile = universalify.fromPromise(_writeFile);
|
|
1914
1914
|
function writeFileSync(file, obj, options2 = {}) {
|
|
1915
|
-
const
|
|
1915
|
+
const fs12 = options2.fs || _fs;
|
|
1916
1916
|
const str = stringify2(obj, options2);
|
|
1917
|
-
return
|
|
1917
|
+
return fs12.writeFileSync(file, str, options2);
|
|
1918
1918
|
}
|
|
1919
1919
|
var jsonfile = {
|
|
1920
1920
|
readFile,
|
|
@@ -1946,23 +1946,23 @@ var require_output_file = __commonJS({
|
|
|
1946
1946
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/output-file/index.js"(exports2, module2) {
|
|
1947
1947
|
"use strict";
|
|
1948
1948
|
var u = require_universalify().fromPromise;
|
|
1949
|
-
var
|
|
1950
|
-
var
|
|
1949
|
+
var fs12 = require_fs();
|
|
1950
|
+
var path13 = require("path");
|
|
1951
1951
|
var mkdir = require_mkdirs();
|
|
1952
1952
|
var pathExists = require_path_exists().pathExists;
|
|
1953
1953
|
async function outputFile(file, data, encoding = "utf-8") {
|
|
1954
|
-
const dir =
|
|
1954
|
+
const dir = path13.dirname(file);
|
|
1955
1955
|
if (!await pathExists(dir)) {
|
|
1956
1956
|
await mkdir.mkdirs(dir);
|
|
1957
1957
|
}
|
|
1958
|
-
return
|
|
1958
|
+
return fs12.writeFile(file, data, encoding);
|
|
1959
1959
|
}
|
|
1960
1960
|
function outputFileSync(file, ...args) {
|
|
1961
|
-
const dir =
|
|
1962
|
-
if (!
|
|
1961
|
+
const dir = path13.dirname(file);
|
|
1962
|
+
if (!fs12.existsSync(dir)) {
|
|
1963
1963
|
mkdir.mkdirsSync(dir);
|
|
1964
1964
|
}
|
|
1965
|
-
|
|
1965
|
+
fs12.writeFileSync(file, ...args);
|
|
1966
1966
|
}
|
|
1967
1967
|
module2.exports = {
|
|
1968
1968
|
outputFile: u(outputFile),
|
|
@@ -2021,8 +2021,8 @@ var require_json = __commonJS({
|
|
|
2021
2021
|
var require_move = __commonJS({
|
|
2022
2022
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/move/move.js"(exports2, module2) {
|
|
2023
2023
|
"use strict";
|
|
2024
|
-
var
|
|
2025
|
-
var
|
|
2024
|
+
var fs12 = require_fs();
|
|
2025
|
+
var path13 = require("path");
|
|
2026
2026
|
var { copy: copy2 } = require_copy2();
|
|
2027
2027
|
var { remove } = require_remove();
|
|
2028
2028
|
var { mkdirp } = require_mkdirs();
|
|
@@ -2032,8 +2032,8 @@ var require_move = __commonJS({
|
|
|
2032
2032
|
const overwrite = opts.overwrite || opts.clobber || false;
|
|
2033
2033
|
const { srcStat, isChangingCase = false } = await stat.checkPaths(src, dest, "move", opts);
|
|
2034
2034
|
await stat.checkParentPaths(src, srcStat, dest, "move");
|
|
2035
|
-
const destParent =
|
|
2036
|
-
const parsedParentPath =
|
|
2035
|
+
const destParent = path13.dirname(dest);
|
|
2036
|
+
const parsedParentPath = path13.parse(destParent);
|
|
2037
2037
|
if (parsedParentPath.root !== destParent) {
|
|
2038
2038
|
await mkdirp(destParent);
|
|
2039
2039
|
}
|
|
@@ -2048,7 +2048,7 @@ var require_move = __commonJS({
|
|
|
2048
2048
|
}
|
|
2049
2049
|
}
|
|
2050
2050
|
try {
|
|
2051
|
-
await
|
|
2051
|
+
await fs12.rename(src, dest);
|
|
2052
2052
|
} catch (err) {
|
|
2053
2053
|
if (err.code !== "EXDEV") {
|
|
2054
2054
|
throw err;
|
|
@@ -2073,8 +2073,8 @@ var require_move = __commonJS({
|
|
|
2073
2073
|
var require_move_sync = __commonJS({
|
|
2074
2074
|
"pnp:/builds/normed/bundle/.yarn/cache/fs-extra-npm-11.3.0-a6b1b4d5ad-c9fe7b23dd.zip/node_modules/fs-extra/lib/move/move-sync.js"(exports2, module2) {
|
|
2075
2075
|
"use strict";
|
|
2076
|
-
var
|
|
2077
|
-
var
|
|
2076
|
+
var fs12 = require_graceful_fs();
|
|
2077
|
+
var path13 = require("path");
|
|
2078
2078
|
var copySync = require_copy2().copySync;
|
|
2079
2079
|
var removeSync = require_remove().removeSync;
|
|
2080
2080
|
var mkdirpSync = require_mkdirs().mkdirpSync;
|
|
@@ -2084,12 +2084,12 @@ var require_move_sync = __commonJS({
|
|
|
2084
2084
|
const overwrite = opts.overwrite || opts.clobber || false;
|
|
2085
2085
|
const { srcStat, isChangingCase = false } = stat.checkPathsSync(src, dest, "move", opts);
|
|
2086
2086
|
stat.checkParentPathsSync(src, srcStat, dest, "move");
|
|
2087
|
-
if (!isParentRoot(dest)) mkdirpSync(
|
|
2087
|
+
if (!isParentRoot(dest)) mkdirpSync(path13.dirname(dest));
|
|
2088
2088
|
return doRename(src, dest, overwrite, isChangingCase);
|
|
2089
2089
|
}
|
|
2090
2090
|
function isParentRoot(dest) {
|
|
2091
|
-
const parent =
|
|
2092
|
-
const parsedPath =
|
|
2091
|
+
const parent = path13.dirname(dest);
|
|
2092
|
+
const parsedPath = path13.parse(parent);
|
|
2093
2093
|
return parsedPath.root === parent;
|
|
2094
2094
|
}
|
|
2095
2095
|
function doRename(src, dest, overwrite, isChangingCase) {
|
|
@@ -2098,12 +2098,12 @@ var require_move_sync = __commonJS({
|
|
|
2098
2098
|
removeSync(dest);
|
|
2099
2099
|
return rename(src, dest, overwrite);
|
|
2100
2100
|
}
|
|
2101
|
-
if (
|
|
2101
|
+
if (fs12.existsSync(dest)) throw new Error("dest already exists.");
|
|
2102
2102
|
return rename(src, dest, overwrite);
|
|
2103
2103
|
}
|
|
2104
2104
|
function rename(src, dest, overwrite) {
|
|
2105
2105
|
try {
|
|
2106
|
-
|
|
2106
|
+
fs12.renameSync(src, dest);
|
|
2107
2107
|
} catch (err) {
|
|
2108
2108
|
if (err.code !== "EXDEV") throw err;
|
|
2109
2109
|
return moveAcrossDevice(src, dest, overwrite);
|
|
@@ -2173,15 +2173,15 @@ var require_core = __commonJS({
|
|
|
2173
2173
|
* @param path the path to the part of the refinement where the error occurrs
|
|
2174
2174
|
* @param message the human readable message describing the nature of the error
|
|
2175
2175
|
*/
|
|
2176
|
-
constructor(
|
|
2177
|
-
super(`Expected ${
|
|
2178
|
-
this.path =
|
|
2176
|
+
constructor(path13, message) {
|
|
2177
|
+
super(`Expected ${path13[0]}: ${path13.slice(1).join(".")} - ${message}`);
|
|
2178
|
+
this.path = path13;
|
|
2179
2179
|
}
|
|
2180
2180
|
};
|
|
2181
2181
|
exports2.RefinementError = RefinementError2;
|
|
2182
2182
|
function attemptRefine(refine) {
|
|
2183
|
-
return function _attemptRefine(
|
|
2184
|
-
const result = refine(
|
|
2183
|
+
return function _attemptRefine(path13, v, fallback) {
|
|
2184
|
+
const result = refine(path13, v);
|
|
2185
2185
|
return result instanceof RefinementError2 ? fallback : result;
|
|
2186
2186
|
};
|
|
2187
2187
|
}
|
|
@@ -2191,24 +2191,24 @@ var require_core = __commonJS({
|
|
|
2191
2191
|
}
|
|
2192
2192
|
exports2.isRefinementError = isRefinementError;
|
|
2193
2193
|
function refineAny3(...refinements) {
|
|
2194
|
-
return function(
|
|
2194
|
+
return function(path13, v) {
|
|
2195
2195
|
const errors = [];
|
|
2196
2196
|
for (let i = 0; i < refinements.length; i++) {
|
|
2197
|
-
const result = refinements[i](
|
|
2197
|
+
const result = refinements[i](path13, v);
|
|
2198
2198
|
if (result instanceof RefinementError2) {
|
|
2199
2199
|
errors.push(result);
|
|
2200
2200
|
} else {
|
|
2201
2201
|
return result;
|
|
2202
2202
|
}
|
|
2203
2203
|
}
|
|
2204
|
-
return new RefinementError2(
|
|
2204
|
+
return new RefinementError2(path13, `
|
|
2205
2205
|
${errors.map((e) => e.message).join("\n OR \n ")}`);
|
|
2206
2206
|
};
|
|
2207
2207
|
}
|
|
2208
2208
|
exports2.refineAny = refineAny3;
|
|
2209
2209
|
function useRefine(refine) {
|
|
2210
|
-
return function _useRefine(
|
|
2211
|
-
const result = refine(
|
|
2210
|
+
return function _useRefine(path13, v) {
|
|
2211
|
+
const result = refine(path13, v);
|
|
2212
2212
|
if (result instanceof RefinementError2) {
|
|
2213
2213
|
throw result;
|
|
2214
2214
|
} else {
|
|
@@ -2219,8 +2219,8 @@ var require_core = __commonJS({
|
|
|
2219
2219
|
exports2.useRefine = useRefine;
|
|
2220
2220
|
function canRefine2(refine) {
|
|
2221
2221
|
let localLastCanRefineRefinementError = new RefinementError2([], "Incorrect error fetched");
|
|
2222
|
-
function _canRefine(
|
|
2223
|
-
const result = refine(
|
|
2222
|
+
function _canRefine(path13, v) {
|
|
2223
|
+
const result = refine(path13, v);
|
|
2224
2224
|
if (result instanceof RefinementError2) {
|
|
2225
2225
|
localLastCanRefineRefinementError = result;
|
|
2226
2226
|
return false;
|
|
@@ -2235,16 +2235,16 @@ var require_core = __commonJS({
|
|
|
2235
2235
|
}
|
|
2236
2236
|
exports2.canRefine = canRefine2;
|
|
2237
2237
|
function makeRefinement2(definition) {
|
|
2238
|
-
function doRefinement(d,
|
|
2238
|
+
function doRefinement(d, path13, v) {
|
|
2239
2239
|
if (typeof d === "function") {
|
|
2240
|
-
return d(
|
|
2240
|
+
return d(path13, v);
|
|
2241
2241
|
}
|
|
2242
2242
|
if (typeof v !== "object" || v === null) {
|
|
2243
|
-
return new RefinementError2(
|
|
2243
|
+
return new RefinementError2(path13, `to be an Object`);
|
|
2244
2244
|
}
|
|
2245
2245
|
const o = {};
|
|
2246
2246
|
for (let [k, vInner] of Object.entries(d)) {
|
|
2247
|
-
const result = doRefinement(vInner,
|
|
2247
|
+
const result = doRefinement(vInner, path13.concat(k), v[k]);
|
|
2248
2248
|
if (result instanceof RefinementError2) {
|
|
2249
2249
|
return result;
|
|
2250
2250
|
}
|
|
@@ -2252,7 +2252,7 @@ var require_core = __commonJS({
|
|
|
2252
2252
|
}
|
|
2253
2253
|
return o;
|
|
2254
2254
|
}
|
|
2255
|
-
return (
|
|
2255
|
+
return (path13, v) => doRefinement(definition, path13, v);
|
|
2256
2256
|
}
|
|
2257
2257
|
exports2.makeRefinement = makeRefinement2;
|
|
2258
2258
|
}
|
|
@@ -2269,19 +2269,19 @@ var require_array = __commonJS({
|
|
|
2269
2269
|
return Array.isArray(v);
|
|
2270
2270
|
}
|
|
2271
2271
|
exports2.isArray = isArray;
|
|
2272
|
-
function refineArray(
|
|
2273
|
-
return Array.isArray(v) ? v : new core_1.RefinementError(
|
|
2272
|
+
function refineArray(path13, v) {
|
|
2273
|
+
return Array.isArray(v) ? v : new core_1.RefinementError(path13, `to be an Array`);
|
|
2274
2274
|
}
|
|
2275
2275
|
exports2.refineArray = refineArray;
|
|
2276
2276
|
function refineArrayOf2(refineValues) {
|
|
2277
|
-
return (
|
|
2278
|
-
const array = refineArray(
|
|
2277
|
+
return (path13, v) => {
|
|
2278
|
+
const array = refineArray(path13, v);
|
|
2279
2279
|
if (array instanceof core_1.RefinementError) {
|
|
2280
2280
|
return array;
|
|
2281
2281
|
}
|
|
2282
2282
|
const arrayRefined = new Array(array.length);
|
|
2283
2283
|
for (let i = 0; i < array.length; i++) {
|
|
2284
|
-
const result = refineValues(
|
|
2284
|
+
const result = refineValues(path13.concat(i.toString()), array[i]);
|
|
2285
2285
|
if (result instanceof core_1.RefinementError) {
|
|
2286
2286
|
return result;
|
|
2287
2287
|
} else {
|
|
@@ -2293,9 +2293,9 @@ var require_array = __commonJS({
|
|
|
2293
2293
|
}
|
|
2294
2294
|
exports2.refineArrayOf = refineArrayOf2;
|
|
2295
2295
|
function refineFromEnumArray(...enumValues) {
|
|
2296
|
-
return (
|
|
2296
|
+
return (path13, v) => {
|
|
2297
2297
|
const index = enumValues.findIndex((eV) => eV === v);
|
|
2298
|
-
return index === -1 ? new core_1.RefinementError(
|
|
2298
|
+
return index === -1 ? new core_1.RefinementError(path13, `to be part of the enum "${enumValues.join('", "')}"`) : enumValues[index];
|
|
2299
2299
|
};
|
|
2300
2300
|
}
|
|
2301
2301
|
exports2.refineFromEnumArray = refineFromEnumArray;
|
|
@@ -2313,8 +2313,8 @@ var require_boolean = __commonJS({
|
|
|
2313
2313
|
return typeof v === "boolean";
|
|
2314
2314
|
}
|
|
2315
2315
|
exports2.isBoolean = isBoolean;
|
|
2316
|
-
function refineBoolean2(
|
|
2317
|
-
return typeof v === "boolean" ? v : new core_1.RefinementError(
|
|
2316
|
+
function refineBoolean2(path13, v) {
|
|
2317
|
+
return typeof v === "boolean" ? v : new core_1.RefinementError(path13, `to be a boolean`);
|
|
2318
2318
|
}
|
|
2319
2319
|
exports2.refineBoolean = refineBoolean2;
|
|
2320
2320
|
}
|
|
@@ -2331,24 +2331,24 @@ var require_object = __commonJS({
|
|
|
2331
2331
|
return typeof v === "object" && v !== null;
|
|
2332
2332
|
}
|
|
2333
2333
|
exports2.isObject = isObject;
|
|
2334
|
-
function refineObject(
|
|
2335
|
-
return isObject(v) ? v : new core_1.RefinementError(
|
|
2334
|
+
function refineObject(path13, v) {
|
|
2335
|
+
return isObject(v) ? v : new core_1.RefinementError(path13, `to be an Object`);
|
|
2336
2336
|
}
|
|
2337
2337
|
exports2.refineObject = refineObject;
|
|
2338
2338
|
function refineObjectOf2(refineKeys, refineValues) {
|
|
2339
|
-
return (
|
|
2340
|
-
const obj = refineObject(
|
|
2339
|
+
return (path13, v) => {
|
|
2340
|
+
const obj = refineObject(path13, v);
|
|
2341
2341
|
if (core_1.isRefinementError(obj)) {
|
|
2342
2342
|
return obj;
|
|
2343
2343
|
}
|
|
2344
2344
|
const objKeys = Object.keys(obj);
|
|
2345
2345
|
const objRefined = {};
|
|
2346
2346
|
for (let i = 0; i < objKeys.length; i++) {
|
|
2347
|
-
const resultKey = refineKeys(
|
|
2347
|
+
const resultKey = refineKeys(path13.concat("$Keys"), objKeys[i]);
|
|
2348
2348
|
if (core_1.isRefinementError(resultKey)) {
|
|
2349
2349
|
return resultKey;
|
|
2350
2350
|
}
|
|
2351
|
-
const resultValue = refineValues(
|
|
2351
|
+
const resultValue = refineValues(path13.concat(objKeys[i]), obj[objKeys[i]]);
|
|
2352
2352
|
if (core_1.isRefinementError(resultValue)) {
|
|
2353
2353
|
return resultValue;
|
|
2354
2354
|
}
|
|
@@ -2360,14 +2360,14 @@ var require_object = __commonJS({
|
|
|
2360
2360
|
exports2.refineObjectOf = refineObjectOf2;
|
|
2361
2361
|
function refineObjectWithKeysMatching(template, refineValue) {
|
|
2362
2362
|
const templateKeys = Object.keys(template);
|
|
2363
|
-
return (
|
|
2364
|
-
const o = refineObject(
|
|
2363
|
+
return (path13, v) => {
|
|
2364
|
+
const o = refineObject(path13, v);
|
|
2365
2365
|
if (o instanceof core_1.RefinementError) {
|
|
2366
2366
|
return o;
|
|
2367
2367
|
}
|
|
2368
2368
|
const entries = [];
|
|
2369
2369
|
for (const key of templateKeys) {
|
|
2370
|
-
const value = refineValue(
|
|
2370
|
+
const value = refineValue(path13.concat(key), o[key]);
|
|
2371
2371
|
if (value instanceof core_1.RefinementError) {
|
|
2372
2372
|
return value;
|
|
2373
2373
|
}
|
|
@@ -2395,16 +2395,16 @@ var require_option = __commonJS({
|
|
|
2395
2395
|
return v === null || v === void 0 ? f : v;
|
|
2396
2396
|
}
|
|
2397
2397
|
exports2.option = option;
|
|
2398
|
-
function refineOption(
|
|
2399
|
-
return v === null || v === void 0 ? v : new core_1.RefinementError(
|
|
2398
|
+
function refineOption(path13, v) {
|
|
2399
|
+
return v === null || v === void 0 ? v : new core_1.RefinementError(path13, `to be null or undefined`);
|
|
2400
2400
|
}
|
|
2401
2401
|
exports2.refineOption = refineOption;
|
|
2402
|
-
function refineUndefined2(
|
|
2403
|
-
return v === void 0 ? v : new core_1.RefinementError(
|
|
2402
|
+
function refineUndefined2(path13, v) {
|
|
2403
|
+
return v === void 0 ? v : new core_1.RefinementError(path13, `to be undefined`);
|
|
2404
2404
|
}
|
|
2405
2405
|
exports2.refineUndefined = refineUndefined2;
|
|
2406
|
-
function refineNull(
|
|
2407
|
-
return v === null ? v : new core_1.RefinementError(
|
|
2406
|
+
function refineNull(path13, v) {
|
|
2407
|
+
return v === null ? v : new core_1.RefinementError(path13, `to be null`);
|
|
2408
2408
|
}
|
|
2409
2409
|
exports2.refineNull = refineNull;
|
|
2410
2410
|
}
|
|
@@ -2421,14 +2421,14 @@ var require_string = __commonJS({
|
|
|
2421
2421
|
return typeof v === "string";
|
|
2422
2422
|
}
|
|
2423
2423
|
exports2.isString = isString;
|
|
2424
|
-
function refineString2(
|
|
2425
|
-
return typeof v === "string" ? v : new core_1.RefinementError(
|
|
2424
|
+
function refineString2(path13, v) {
|
|
2425
|
+
return typeof v === "string" ? v : new core_1.RefinementError(path13, `to be a String`);
|
|
2426
2426
|
}
|
|
2427
2427
|
exports2.refineString = refineString2;
|
|
2428
2428
|
function refineStringLiteral2(literal) {
|
|
2429
|
-
return function _refineStringLiteral(
|
|
2429
|
+
return function _refineStringLiteral(path13, v) {
|
|
2430
2430
|
if (v !== literal) {
|
|
2431
|
-
return new core_1.RefinementError(
|
|
2431
|
+
return new core_1.RefinementError(path13, `should be string literal "${literal}"`);
|
|
2432
2432
|
}
|
|
2433
2433
|
return literal;
|
|
2434
2434
|
};
|
|
@@ -2439,13 +2439,13 @@ var require_string = __commonJS({
|
|
|
2439
2439
|
}
|
|
2440
2440
|
exports2.isStringLiteral = isStringLiteral;
|
|
2441
2441
|
function refineStringRegex(regex) {
|
|
2442
|
-
return function _refineStringRegex(
|
|
2443
|
-
const string = refineString2(
|
|
2442
|
+
return function _refineStringRegex(path13, v) {
|
|
2443
|
+
const string = refineString2(path13, v);
|
|
2444
2444
|
if (string instanceof core_1.RefinementError) {
|
|
2445
2445
|
return string;
|
|
2446
2446
|
}
|
|
2447
2447
|
if (!regex.test(string)) {
|
|
2448
|
-
return new core_1.RefinementError(
|
|
2448
|
+
return new core_1.RefinementError(path13, `should be a string matching the regex ${regex.toString()}`);
|
|
2449
2449
|
}
|
|
2450
2450
|
return string;
|
|
2451
2451
|
};
|
|
@@ -2469,8 +2469,8 @@ var require_function = __commonJS({
|
|
|
2469
2469
|
return typeof v === "function";
|
|
2470
2470
|
}
|
|
2471
2471
|
exports2.isFunction = isFunction;
|
|
2472
|
-
function refineFunction(
|
|
2473
|
-
return typeof v === "function" ? v : new core_1.RefinementError(
|
|
2472
|
+
function refineFunction(path13, v) {
|
|
2473
|
+
return typeof v === "function" ? v : new core_1.RefinementError(path13, `to be a function`);
|
|
2474
2474
|
}
|
|
2475
2475
|
exports2.refineFunction = refineFunction;
|
|
2476
2476
|
}
|
|
@@ -2487,14 +2487,14 @@ var require_number = __commonJS({
|
|
|
2487
2487
|
return typeof v === "number";
|
|
2488
2488
|
}
|
|
2489
2489
|
exports2.isNumber = isNumber;
|
|
2490
|
-
function refineNumber(
|
|
2491
|
-
return typeof v === "number" ? v : new core_1.RefinementError(
|
|
2490
|
+
function refineNumber(path13, v) {
|
|
2491
|
+
return typeof v === "number" ? v : new core_1.RefinementError(path13, `to be a Number`);
|
|
2492
2492
|
}
|
|
2493
2493
|
exports2.refineNumber = refineNumber;
|
|
2494
2494
|
function refineNumberLiteral(literal) {
|
|
2495
|
-
return function _refineStringLiteral(
|
|
2495
|
+
return function _refineStringLiteral(path13, v) {
|
|
2496
2496
|
if (v !== literal) {
|
|
2497
|
-
return new core_1.RefinementError(
|
|
2497
|
+
return new core_1.RefinementError(path13, `should be number literal "${literal}"`);
|
|
2498
2498
|
}
|
|
2499
2499
|
return literal;
|
|
2500
2500
|
};
|
|
@@ -5498,15 +5498,15 @@ var require_route = __commonJS({
|
|
|
5498
5498
|
};
|
|
5499
5499
|
}
|
|
5500
5500
|
function wrapConversion(toModel, graph) {
|
|
5501
|
-
const
|
|
5501
|
+
const path13 = [graph[toModel].parent, toModel];
|
|
5502
5502
|
let fn = conversions[graph[toModel].parent][toModel];
|
|
5503
5503
|
let cur = graph[toModel].parent;
|
|
5504
5504
|
while (graph[cur].parent) {
|
|
5505
|
-
|
|
5505
|
+
path13.unshift(graph[cur].parent);
|
|
5506
5506
|
fn = link(conversions[graph[cur].parent][cur], fn);
|
|
5507
5507
|
cur = graph[cur].parent;
|
|
5508
5508
|
}
|
|
5509
|
-
fn.conversion =
|
|
5509
|
+
fn.conversion = path13;
|
|
5510
5510
|
return fn;
|
|
5511
5511
|
}
|
|
5512
5512
|
module2.exports = function(fromModel) {
|
|
@@ -6700,8 +6700,8 @@ var require_types = __commonJS({
|
|
|
6700
6700
|
// pnp:/builds/normed/bundle/.yarn/cache/mime-npm-1.6.0-60ae95038a-b7d98bb1e0.zip/node_modules/mime/mime.js
|
|
6701
6701
|
var require_mime = __commonJS({
|
|
6702
6702
|
"pnp:/builds/normed/bundle/.yarn/cache/mime-npm-1.6.0-60ae95038a-b7d98bb1e0.zip/node_modules/mime/mime.js"(exports2, module2) {
|
|
6703
|
-
var
|
|
6704
|
-
var
|
|
6703
|
+
var path13 = require("path");
|
|
6704
|
+
var fs12 = require("fs");
|
|
6705
6705
|
function Mime() {
|
|
6706
6706
|
this.types = /* @__PURE__ */ Object.create(null);
|
|
6707
6707
|
this.extensions = /* @__PURE__ */ Object.create(null);
|
|
@@ -6722,7 +6722,7 @@ var require_mime = __commonJS({
|
|
|
6722
6722
|
};
|
|
6723
6723
|
Mime.prototype.load = function(file) {
|
|
6724
6724
|
this._loading = file;
|
|
6725
|
-
var map = {}, content =
|
|
6725
|
+
var map = {}, content = fs12.readFileSync(file, "ascii"), lines = content.split(/[\r\n]+/);
|
|
6726
6726
|
lines.forEach(function(line) {
|
|
6727
6727
|
var fields = line.replace(/\s*#.*|^\s*|\s*$/g, "").split(/\s+/);
|
|
6728
6728
|
map[fields.shift()] = fields;
|
|
@@ -6730,8 +6730,8 @@ var require_mime = __commonJS({
|
|
|
6730
6730
|
this.define(map);
|
|
6731
6731
|
this._loading = null;
|
|
6732
6732
|
};
|
|
6733
|
-
Mime.prototype.lookup = function(
|
|
6734
|
-
var ext =
|
|
6733
|
+
Mime.prototype.lookup = function(path14, fallback) {
|
|
6734
|
+
var ext = path14.replace(/^.*[\.\/\\]/, "").toLowerCase();
|
|
6735
6735
|
return this.types[ext] || fallback || this.default_type;
|
|
6736
6736
|
};
|
|
6737
6737
|
Mime.prototype.extension = function(mimeType) {
|
|
@@ -6897,16 +6897,16 @@ var require_util2 = __commonJS({
|
|
|
6897
6897
|
}
|
|
6898
6898
|
exports2.urlGenerate = urlGenerate;
|
|
6899
6899
|
function normalize(aPath) {
|
|
6900
|
-
var
|
|
6900
|
+
var path13 = aPath;
|
|
6901
6901
|
var url = urlParse(aPath);
|
|
6902
6902
|
if (url) {
|
|
6903
6903
|
if (!url.path) {
|
|
6904
6904
|
return aPath;
|
|
6905
6905
|
}
|
|
6906
|
-
|
|
6906
|
+
path13 = url.path;
|
|
6907
6907
|
}
|
|
6908
|
-
var isAbsolute = exports2.isAbsolute(
|
|
6909
|
-
var parts =
|
|
6908
|
+
var isAbsolute = exports2.isAbsolute(path13);
|
|
6909
|
+
var parts = path13.split(/\/+/);
|
|
6910
6910
|
for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
|
|
6911
6911
|
part = parts[i];
|
|
6912
6912
|
if (part === ".") {
|
|
@@ -6923,15 +6923,15 @@ var require_util2 = __commonJS({
|
|
|
6923
6923
|
}
|
|
6924
6924
|
}
|
|
6925
6925
|
}
|
|
6926
|
-
|
|
6927
|
-
if (
|
|
6928
|
-
|
|
6926
|
+
path13 = parts.join("/");
|
|
6927
|
+
if (path13 === "") {
|
|
6928
|
+
path13 = isAbsolute ? "/" : ".";
|
|
6929
6929
|
}
|
|
6930
6930
|
if (url) {
|
|
6931
|
-
url.path =
|
|
6931
|
+
url.path = path13;
|
|
6932
6932
|
return urlGenerate(url);
|
|
6933
6933
|
}
|
|
6934
|
-
return
|
|
6934
|
+
return path13;
|
|
6935
6935
|
}
|
|
6936
6936
|
exports2.normalize = normalize;
|
|
6937
6937
|
function join2(aRoot, aPath) {
|
|
@@ -8526,13 +8526,13 @@ var require_fs2 = __commonJS({
|
|
|
8526
8526
|
"pnp:/builds/normed/bundle/.yarn/cache/less-npm-4.3.0-29a3ad37f8-893d058939.zip/node_modules/less/lib/less-node/fs.js"(exports2) {
|
|
8527
8527
|
"use strict";
|
|
8528
8528
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
8529
|
-
var
|
|
8529
|
+
var fs12;
|
|
8530
8530
|
try {
|
|
8531
|
-
|
|
8531
|
+
fs12 = require_graceful_fs();
|
|
8532
8532
|
} catch (e) {
|
|
8533
|
-
|
|
8533
|
+
fs12 = require("fs");
|
|
8534
8534
|
}
|
|
8535
|
-
exports2.default =
|
|
8535
|
+
exports2.default = fs12;
|
|
8536
8536
|
}
|
|
8537
8537
|
});
|
|
8538
8538
|
|
|
@@ -8560,11 +8560,11 @@ var require_abstract_file_manager = __commonJS({
|
|
|
8560
8560
|
}
|
|
8561
8561
|
return filename.slice(0, j + 1);
|
|
8562
8562
|
};
|
|
8563
|
-
AbstractFileManager2.prototype.tryAppendExtension = function(
|
|
8564
|
-
return /(\.[a-z]*$)|([?;].*)$/.test(
|
|
8563
|
+
AbstractFileManager2.prototype.tryAppendExtension = function(path13, ext) {
|
|
8564
|
+
return /(\.[a-z]*$)|([?;].*)$/.test(path13) ? path13 : path13 + ext;
|
|
8565
8565
|
};
|
|
8566
|
-
AbstractFileManager2.prototype.tryAppendLessExtension = function(
|
|
8567
|
-
return this.tryAppendExtension(
|
|
8566
|
+
AbstractFileManager2.prototype.tryAppendLessExtension = function(path13) {
|
|
8567
|
+
return this.tryAppendExtension(path13, ".less");
|
|
8568
8568
|
};
|
|
8569
8569
|
AbstractFileManager2.prototype.supportsSync = function() {
|
|
8570
8570
|
return false;
|
|
@@ -8985,9 +8985,9 @@ var require_auth = __commonJS({
|
|
|
8985
8985
|
nc = nc + "";
|
|
8986
8986
|
return padding.substr(0, 8 - nc.length) + nc;
|
|
8987
8987
|
};
|
|
8988
|
-
digest.generate = function(header, user, pass, method,
|
|
8988
|
+
digest.generate = function(header, user, pass, method, path13) {
|
|
8989
8989
|
var nc = 1, cnonce = null, challenge = digest.parse_header(header);
|
|
8990
|
-
var ha1 = md5(user + ":" + challenge.realm + ":" + pass), ha2 = md5(method.toUpperCase() + ":" +
|
|
8990
|
+
var ha1 = md5(user + ":" + challenge.realm + ":" + pass), ha2 = md5(method.toUpperCase() + ":" + path13), resp = [ha1, challenge.nonce];
|
|
8991
8991
|
if (typeof challenge.qop === "string") {
|
|
8992
8992
|
cnonce = md5(Math.random().toString(36)).substr(0, 8);
|
|
8993
8993
|
nc = digest.update_nc(nc);
|
|
@@ -8997,7 +8997,7 @@ var require_auth = __commonJS({
|
|
|
8997
8997
|
resp = resp.concat(ha2);
|
|
8998
8998
|
}
|
|
8999
8999
|
var params = {
|
|
9000
|
-
uri:
|
|
9000
|
+
uri: path13,
|
|
9001
9001
|
realm: challenge.realm,
|
|
9002
9002
|
nonce: challenge.nonce,
|
|
9003
9003
|
username: user,
|
|
@@ -14332,7 +14332,7 @@ var require_decoder = __commonJS({
|
|
|
14332
14332
|
// pnp:/builds/normed/bundle/.yarn/cache/needle-npm-3.3.1-069ce952ef-31925ec72b.zip/node_modules/needle/lib/utils.js
|
|
14333
14333
|
var require_utils3 = __commonJS({
|
|
14334
14334
|
"pnp:/builds/normed/bundle/.yarn/cache/needle-npm-3.3.1-069ce952ef-31925ec72b.zip/node_modules/needle/lib/utils.js"(exports2, module2) {
|
|
14335
|
-
var
|
|
14335
|
+
var fs12 = require("fs");
|
|
14336
14336
|
var url = require("url");
|
|
14337
14337
|
var stream = require("stream");
|
|
14338
14338
|
function resolve_url(href, base) {
|
|
@@ -14383,7 +14383,7 @@ var require_utils3 = __commonJS({
|
|
|
14383
14383
|
return cb(given_length);
|
|
14384
14384
|
if (stream2.end !== void 0 && stream2.end !== Infinity && stream2.start !== void 0)
|
|
14385
14385
|
return cb(stream2.end + 1 - (stream2.start || 0));
|
|
14386
|
-
|
|
14386
|
+
fs12.stat(stream2.path, function(err, stat) {
|
|
14387
14387
|
cb(stat ? stat.size - (stream2.start || 0) : null);
|
|
14388
14388
|
});
|
|
14389
14389
|
}
|
|
@@ -14491,7 +14491,7 @@ var require_package = __commonJS({
|
|
|
14491
14491
|
// pnp:/builds/normed/bundle/.yarn/cache/needle-npm-3.3.1-069ce952ef-31925ec72b.zip/node_modules/needle/lib/needle.js
|
|
14492
14492
|
var require_needle = __commonJS({
|
|
14493
14493
|
"pnp:/builds/normed/bundle/.yarn/cache/needle-npm-3.3.1-069ce952ef-31925ec72b.zip/node_modules/needle/lib/needle.js"(exports2, module2) {
|
|
14494
|
-
var
|
|
14494
|
+
var fs12 = require("fs");
|
|
14495
14495
|
var http = require("http");
|
|
14496
14496
|
var https = require("https");
|
|
14497
14497
|
var url = require("url");
|
|
@@ -14891,7 +14891,7 @@ var require_needle = __commonJS({
|
|
|
14891
14891
|
if (err && err.message == "write after end") request.destroy();
|
|
14892
14892
|
});
|
|
14893
14893
|
if (config.output && resp.statusCode == 200) {
|
|
14894
|
-
var file =
|
|
14894
|
+
var file = fs12.createWriteStream(config.output);
|
|
14895
14895
|
file.on("error", had_error);
|
|
14896
14896
|
out.on("end", function() {
|
|
14897
14897
|
if (file.writable) file.end();
|
|
@@ -16565,47 +16565,47 @@ var require_contexts = __commonJS({
|
|
|
16565
16565
|
}
|
|
16566
16566
|
return true;
|
|
16567
16567
|
};
|
|
16568
|
-
contexts.Eval.prototype.pathRequiresRewrite = function(
|
|
16568
|
+
contexts.Eval.prototype.pathRequiresRewrite = function(path13) {
|
|
16569
16569
|
var isRelative = this.rewriteUrls === Constants.RewriteUrls.LOCAL ? isPathLocalRelative : isPathRelative;
|
|
16570
|
-
return isRelative(
|
|
16570
|
+
return isRelative(path13);
|
|
16571
16571
|
};
|
|
16572
|
-
contexts.Eval.prototype.rewritePath = function(
|
|
16572
|
+
contexts.Eval.prototype.rewritePath = function(path13, rootpath) {
|
|
16573
16573
|
var newPath;
|
|
16574
16574
|
rootpath = rootpath || "";
|
|
16575
|
-
newPath = this.normalizePath(rootpath +
|
|
16576
|
-
if (isPathLocalRelative(
|
|
16575
|
+
newPath = this.normalizePath(rootpath + path13);
|
|
16576
|
+
if (isPathLocalRelative(path13) && isPathRelative(rootpath) && isPathLocalRelative(newPath) === false) {
|
|
16577
16577
|
newPath = "./".concat(newPath);
|
|
16578
16578
|
}
|
|
16579
16579
|
return newPath;
|
|
16580
16580
|
};
|
|
16581
|
-
contexts.Eval.prototype.normalizePath = function(
|
|
16582
|
-
var segments =
|
|
16581
|
+
contexts.Eval.prototype.normalizePath = function(path13) {
|
|
16582
|
+
var segments = path13.split("/").reverse();
|
|
16583
16583
|
var segment;
|
|
16584
|
-
|
|
16584
|
+
path13 = [];
|
|
16585
16585
|
while (segments.length !== 0) {
|
|
16586
16586
|
segment = segments.pop();
|
|
16587
16587
|
switch (segment) {
|
|
16588
16588
|
case ".":
|
|
16589
16589
|
break;
|
|
16590
16590
|
case "..":
|
|
16591
|
-
if (
|
|
16592
|
-
|
|
16591
|
+
if (path13.length === 0 || path13[path13.length - 1] === "..") {
|
|
16592
|
+
path13.push(segment);
|
|
16593
16593
|
} else {
|
|
16594
|
-
|
|
16594
|
+
path13.pop();
|
|
16595
16595
|
}
|
|
16596
16596
|
break;
|
|
16597
16597
|
default:
|
|
16598
|
-
|
|
16598
|
+
path13.push(segment);
|
|
16599
16599
|
break;
|
|
16600
16600
|
}
|
|
16601
16601
|
}
|
|
16602
|
-
return
|
|
16602
|
+
return path13.join("/");
|
|
16603
16603
|
};
|
|
16604
|
-
function isPathRelative(
|
|
16605
|
-
return !/^(?:[a-z-]+:|\/|#)/i.test(
|
|
16604
|
+
function isPathRelative(path13) {
|
|
16605
|
+
return !/^(?:[a-z-]+:|\/|#)/i.test(path13);
|
|
16606
16606
|
}
|
|
16607
|
-
function isPathLocalRelative(
|
|
16608
|
-
return
|
|
16607
|
+
function isPathLocalRelative(path13) {
|
|
16608
|
+
return path13.charAt(0) === ".";
|
|
16609
16609
|
}
|
|
16610
16610
|
}
|
|
16611
16611
|
});
|
|
@@ -17224,22 +17224,22 @@ var require_extend_visitor = __commonJS({
|
|
|
17224
17224
|
return false;
|
|
17225
17225
|
};
|
|
17226
17226
|
ProcessExtendsVisitor2.prototype.extendSelector = function(matches, selectorPath, replacementSelector, isVisible) {
|
|
17227
|
-
var currentSelectorPathIndex = 0, currentSelectorPathElementIndex = 0,
|
|
17227
|
+
var currentSelectorPathIndex = 0, currentSelectorPathElementIndex = 0, path13 = [], matchIndex, selector, firstElement, match, newElements;
|
|
17228
17228
|
for (matchIndex = 0; matchIndex < matches.length; matchIndex++) {
|
|
17229
17229
|
match = matches[matchIndex];
|
|
17230
17230
|
selector = selectorPath[match.pathIndex];
|
|
17231
17231
|
firstElement = new tree_1.default.Element(match.initialCombinator, replacementSelector.elements[0].value, replacementSelector.elements[0].isVariable, replacementSelector.elements[0].getIndex(), replacementSelector.elements[0].fileInfo());
|
|
17232
17232
|
if (match.pathIndex > currentSelectorPathIndex && currentSelectorPathElementIndex > 0) {
|
|
17233
|
-
|
|
17233
|
+
path13[path13.length - 1].elements = path13[path13.length - 1].elements.concat(selectorPath[currentSelectorPathIndex].elements.slice(currentSelectorPathElementIndex));
|
|
17234
17234
|
currentSelectorPathElementIndex = 0;
|
|
17235
17235
|
currentSelectorPathIndex++;
|
|
17236
17236
|
}
|
|
17237
17237
|
newElements = selector.elements.slice(currentSelectorPathElementIndex, match.index).concat([firstElement]).concat(replacementSelector.elements.slice(1));
|
|
17238
17238
|
if (currentSelectorPathIndex === match.pathIndex && matchIndex > 0) {
|
|
17239
|
-
|
|
17239
|
+
path13[path13.length - 1].elements = path13[path13.length - 1].elements.concat(newElements);
|
|
17240
17240
|
} else {
|
|
17241
|
-
|
|
17242
|
-
|
|
17241
|
+
path13 = path13.concat(selectorPath.slice(currentSelectorPathIndex, match.pathIndex));
|
|
17242
|
+
path13.push(new tree_1.default.Selector(newElements));
|
|
17243
17243
|
}
|
|
17244
17244
|
currentSelectorPathIndex = match.endPathIndex;
|
|
17245
17245
|
currentSelectorPathElementIndex = match.endPathElementIndex;
|
|
@@ -17249,11 +17249,11 @@ var require_extend_visitor = __commonJS({
|
|
|
17249
17249
|
}
|
|
17250
17250
|
}
|
|
17251
17251
|
if (currentSelectorPathIndex < selectorPath.length && currentSelectorPathElementIndex > 0) {
|
|
17252
|
-
|
|
17252
|
+
path13[path13.length - 1].elements = path13[path13.length - 1].elements.concat(selectorPath[currentSelectorPathIndex].elements.slice(currentSelectorPathElementIndex));
|
|
17253
17253
|
currentSelectorPathIndex++;
|
|
17254
17254
|
}
|
|
17255
|
-
|
|
17256
|
-
|
|
17255
|
+
path13 = path13.concat(selectorPath.slice(currentSelectorPathIndex, selectorPath.length));
|
|
17256
|
+
path13 = path13.map(function(currentValue) {
|
|
17257
17257
|
var derived = currentValue.createDerived(currentValue.elements);
|
|
17258
17258
|
if (isVisible) {
|
|
17259
17259
|
derived.ensureVisibility();
|
|
@@ -17262,7 +17262,7 @@ var require_extend_visitor = __commonJS({
|
|
|
17262
17262
|
}
|
|
17263
17263
|
return derived;
|
|
17264
17264
|
});
|
|
17265
|
-
return
|
|
17265
|
+
return path13;
|
|
17266
17266
|
};
|
|
17267
17267
|
ProcessExtendsVisitor2.prototype.visitMedia = function(mediaNode, visitArgs) {
|
|
17268
17268
|
var newAllExtends = mediaNode.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length - 1]);
|
|
@@ -19756,20 +19756,20 @@ var require_parser = __commonJS({
|
|
|
19756
19756
|
// stored in `import`, which we pass to the Import constructor.
|
|
19757
19757
|
//
|
|
19758
19758
|
"import": function() {
|
|
19759
|
-
var
|
|
19759
|
+
var path13;
|
|
19760
19760
|
var features;
|
|
19761
19761
|
var index = parserInput.i;
|
|
19762
19762
|
var dir = parserInput.$re(/^@import\s+/);
|
|
19763
19763
|
if (dir) {
|
|
19764
19764
|
var options2 = (dir ? this.importOptions() : null) || {};
|
|
19765
|
-
if (
|
|
19765
|
+
if (path13 = this.entities.quoted() || this.entities.url()) {
|
|
19766
19766
|
features = this.mediaFeatures({});
|
|
19767
19767
|
if (!parserInput.$char(";")) {
|
|
19768
19768
|
parserInput.i = index;
|
|
19769
19769
|
error("missing semi-colon or unrecognised media features on import");
|
|
19770
19770
|
}
|
|
19771
19771
|
features = features && new tree_1.default.Value(features);
|
|
19772
|
-
return new tree_1.default.Import(
|
|
19772
|
+
return new tree_1.default.Import(path13, features, options2, index + currentIndex, fileInfo);
|
|
19773
19773
|
} else {
|
|
19774
19774
|
parserInput.i = index;
|
|
19775
19775
|
error("malformed import statement");
|
|
@@ -19920,7 +19920,7 @@ var require_parser = __commonJS({
|
|
|
19920
19920
|
// @plugin (args) "lib";
|
|
19921
19921
|
//
|
|
19922
19922
|
plugin: function() {
|
|
19923
|
-
var
|
|
19923
|
+
var path13;
|
|
19924
19924
|
var args;
|
|
19925
19925
|
var options2;
|
|
19926
19926
|
var index = parserInput.i;
|
|
@@ -19935,12 +19935,12 @@ var require_parser = __commonJS({
|
|
|
19935
19935
|
} else {
|
|
19936
19936
|
options2 = { isPlugin: true };
|
|
19937
19937
|
}
|
|
19938
|
-
if (
|
|
19938
|
+
if (path13 = this.entities.quoted() || this.entities.url()) {
|
|
19939
19939
|
if (!parserInput.$char(";")) {
|
|
19940
19940
|
parserInput.i = index;
|
|
19941
19941
|
error("missing semi-colon on @plugin");
|
|
19942
19942
|
}
|
|
19943
|
-
return new tree_1.default.Import(
|
|
19943
|
+
return new tree_1.default.Import(path13, null, options2, index + currentIndex, fileInfo);
|
|
19944
19944
|
} else {
|
|
19945
19945
|
parserInput.i = index;
|
|
19946
19946
|
error("malformed @plugin statement");
|
|
@@ -21243,7 +21243,7 @@ var require_ruleset = __commonJS({
|
|
|
21243
21243
|
var ruleNodes = [];
|
|
21244
21244
|
var debugInfo;
|
|
21245
21245
|
var rule;
|
|
21246
|
-
var
|
|
21246
|
+
var path13;
|
|
21247
21247
|
context.tabLevel = context.tabLevel || 0;
|
|
21248
21248
|
if (!this.root) {
|
|
21249
21249
|
context.tabLevel++;
|
|
@@ -21282,18 +21282,18 @@ var require_ruleset = __commonJS({
|
|
|
21282
21282
|
var pathSubCnt = void 0;
|
|
21283
21283
|
sep = context.compress ? "," : ",\n".concat(tabSetStr);
|
|
21284
21284
|
for (i = 0; i < pathCnt; i++) {
|
|
21285
|
-
|
|
21286
|
-
if (!(pathSubCnt =
|
|
21285
|
+
path13 = paths[i];
|
|
21286
|
+
if (!(pathSubCnt = path13.length)) {
|
|
21287
21287
|
continue;
|
|
21288
21288
|
}
|
|
21289
21289
|
if (i > 0) {
|
|
21290
21290
|
output.add(sep);
|
|
21291
21291
|
}
|
|
21292
21292
|
context.firstSelector = true;
|
|
21293
|
-
|
|
21293
|
+
path13[0].genCSS(context, output);
|
|
21294
21294
|
context.firstSelector = false;
|
|
21295
21295
|
for (j = 1; j < pathSubCnt; j++) {
|
|
21296
|
-
|
|
21296
|
+
path13[j].genCSS(context, output);
|
|
21297
21297
|
}
|
|
21298
21298
|
}
|
|
21299
21299
|
output.add((context.compress ? "{" : " {\n") + tabRuleStr);
|
|
@@ -21885,23 +21885,23 @@ var require_nested_at_rule = __commonJS({
|
|
|
21885
21885
|
evalNested: function(context) {
|
|
21886
21886
|
var i;
|
|
21887
21887
|
var value;
|
|
21888
|
-
var
|
|
21889
|
-
for (i = 0; i <
|
|
21890
|
-
if (
|
|
21888
|
+
var path13 = context.mediaPath.concat([this]);
|
|
21889
|
+
for (i = 0; i < path13.length; i++) {
|
|
21890
|
+
if (path13[i].type !== this.type) {
|
|
21891
21891
|
context.mediaBlocks.splice(i, 1);
|
|
21892
21892
|
return this;
|
|
21893
21893
|
}
|
|
21894
|
-
value =
|
|
21895
|
-
|
|
21894
|
+
value = path13[i].features instanceof value_1.default ? path13[i].features.value : path13[i].features;
|
|
21895
|
+
path13[i] = Array.isArray(value) ? value : [value];
|
|
21896
21896
|
}
|
|
21897
|
-
this.features = new value_1.default(this.permute(
|
|
21898
|
-
|
|
21897
|
+
this.features = new value_1.default(this.permute(path13).map(function(path14) {
|
|
21898
|
+
path14 = path14.map(function(fragment) {
|
|
21899
21899
|
return fragment.toCSS ? fragment : new anonymous_1.default(fragment);
|
|
21900
21900
|
});
|
|
21901
|
-
for (i =
|
|
21902
|
-
|
|
21901
|
+
for (i = path14.length - 1; i > 0; i--) {
|
|
21902
|
+
path14.splice(i, 0, new anonymous_1.default("and"));
|
|
21903
21903
|
}
|
|
21904
|
-
return new expression_1.default(
|
|
21904
|
+
return new expression_1.default(path14);
|
|
21905
21905
|
}));
|
|
21906
21906
|
this.setParent(this.features, this);
|
|
21907
21907
|
return new ruleset_1.default([], []);
|
|
@@ -22658,8 +22658,8 @@ var require_url = __commonJS({
|
|
|
22658
22658
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
22659
22659
|
var tslib_1 = require_tslib();
|
|
22660
22660
|
var node_1 = tslib_1.__importDefault(require_node());
|
|
22661
|
-
function escapePath(
|
|
22662
|
-
return
|
|
22661
|
+
function escapePath(path13) {
|
|
22662
|
+
return path13.replace(/[()'"\s]/g, function(match) {
|
|
22663
22663
|
return "\\".concat(match);
|
|
22664
22664
|
});
|
|
22665
22665
|
}
|
|
@@ -22777,11 +22777,11 @@ var require_import = __commonJS({
|
|
|
22777
22777
|
var anonymous_1 = tslib_1.__importDefault(require_anonymous());
|
|
22778
22778
|
var utils = tslib_1.__importStar(require_utils4());
|
|
22779
22779
|
var less_error_1 = tslib_1.__importDefault(require_less_error());
|
|
22780
|
-
var Import = function(
|
|
22780
|
+
var Import = function(path13, features, options2, index, currentFileInfo, visibilityInfo) {
|
|
22781
22781
|
this.options = options2;
|
|
22782
22782
|
this._index = index;
|
|
22783
22783
|
this._fileInfo = currentFileInfo;
|
|
22784
|
-
this.path =
|
|
22784
|
+
this.path = path13;
|
|
22785
22785
|
this.features = features;
|
|
22786
22786
|
this.allowRoot = true;
|
|
22787
22787
|
if (this.options.less !== void 0 || this.options.inline) {
|
|
@@ -22822,34 +22822,34 @@ var require_import = __commonJS({
|
|
|
22822
22822
|
return this.path instanceof url_1.default ? this.path.value.value : this.path.value;
|
|
22823
22823
|
},
|
|
22824
22824
|
isVariableImport: function() {
|
|
22825
|
-
var
|
|
22826
|
-
if (
|
|
22827
|
-
|
|
22825
|
+
var path13 = this.path;
|
|
22826
|
+
if (path13 instanceof url_1.default) {
|
|
22827
|
+
path13 = path13.value;
|
|
22828
22828
|
}
|
|
22829
|
-
if (
|
|
22830
|
-
return
|
|
22829
|
+
if (path13 instanceof quoted_1.default) {
|
|
22830
|
+
return path13.containsVariables();
|
|
22831
22831
|
}
|
|
22832
22832
|
return true;
|
|
22833
22833
|
},
|
|
22834
22834
|
evalForImport: function(context) {
|
|
22835
|
-
var
|
|
22836
|
-
if (
|
|
22837
|
-
|
|
22835
|
+
var path13 = this.path;
|
|
22836
|
+
if (path13 instanceof url_1.default) {
|
|
22837
|
+
path13 = path13.value;
|
|
22838
22838
|
}
|
|
22839
|
-
return new Import(
|
|
22839
|
+
return new Import(path13.eval(context), this.features, this.options, this._index, this._fileInfo, this.visibilityInfo());
|
|
22840
22840
|
},
|
|
22841
22841
|
evalPath: function(context) {
|
|
22842
|
-
var
|
|
22842
|
+
var path13 = this.path.eval(context);
|
|
22843
22843
|
var fileInfo = this._fileInfo;
|
|
22844
|
-
if (!(
|
|
22845
|
-
var pathValue =
|
|
22844
|
+
if (!(path13 instanceof url_1.default)) {
|
|
22845
|
+
var pathValue = path13.value;
|
|
22846
22846
|
if (fileInfo && pathValue && context.pathRequiresRewrite(pathValue)) {
|
|
22847
|
-
|
|
22847
|
+
path13.value = context.rewritePath(pathValue, fileInfo.rootpath);
|
|
22848
22848
|
} else {
|
|
22849
|
-
|
|
22849
|
+
path13.value = context.normalizePath(path13.value);
|
|
22850
22850
|
}
|
|
22851
22851
|
}
|
|
22852
|
-
return
|
|
22852
|
+
return path13;
|
|
22853
22853
|
},
|
|
22854
22854
|
eval: function(context) {
|
|
22855
22855
|
var result = this.doEval(context);
|
|
@@ -25512,14 +25512,14 @@ var require_source_map_output = __commonJS({
|
|
|
25512
25512
|
this._lineNumber = 0;
|
|
25513
25513
|
this._column = 0;
|
|
25514
25514
|
}
|
|
25515
|
-
SourceMapOutput2.prototype.removeBasepath = function(
|
|
25516
|
-
if (this._sourceMapBasepath &&
|
|
25517
|
-
|
|
25518
|
-
if (
|
|
25519
|
-
|
|
25515
|
+
SourceMapOutput2.prototype.removeBasepath = function(path13) {
|
|
25516
|
+
if (this._sourceMapBasepath && path13.indexOf(this._sourceMapBasepath) === 0) {
|
|
25517
|
+
path13 = path13.substring(this._sourceMapBasepath.length);
|
|
25518
|
+
if (path13.charAt(0) === "\\" || path13.charAt(0) === "/") {
|
|
25519
|
+
path13 = path13.substring(1);
|
|
25520
25520
|
}
|
|
25521
25521
|
}
|
|
25522
|
-
return
|
|
25522
|
+
return path13;
|
|
25523
25523
|
};
|
|
25524
25524
|
SourceMapOutput2.prototype.normalizeFilename = function(filename) {
|
|
25525
25525
|
filename = filename.replace(/\\/g, "/");
|
|
@@ -25794,11 +25794,11 @@ var require_import_manager = __commonJS({
|
|
|
25794
25794
|
this.queue = [];
|
|
25795
25795
|
this.files = {};
|
|
25796
25796
|
}
|
|
25797
|
-
ImportManager2.prototype.push = function(
|
|
25797
|
+
ImportManager2.prototype.push = function(path13, tryAppendExtension, currentFileInfo, importOptions, callback) {
|
|
25798
25798
|
var importManager = this, pluginLoader = this.context.pluginManager.Loader;
|
|
25799
|
-
this.queue.push(
|
|
25799
|
+
this.queue.push(path13);
|
|
25800
25800
|
var fileParsedFunc = function(e, root, fullPath) {
|
|
25801
|
-
importManager.queue.splice(importManager.queue.indexOf(
|
|
25801
|
+
importManager.queue.splice(importManager.queue.indexOf(path13), 1);
|
|
25802
25802
|
var importedEqualsRoot = fullPath === importManager.rootFilename;
|
|
25803
25803
|
if (importOptions.optional && e) {
|
|
25804
25804
|
callback(null, { rules: [] }, false, null);
|
|
@@ -25819,9 +25819,9 @@ var require_import_manager = __commonJS({
|
|
|
25819
25819
|
rootpath: currentFileInfo.rootpath,
|
|
25820
25820
|
rootFilename: currentFileInfo.rootFilename
|
|
25821
25821
|
};
|
|
25822
|
-
var fileManager = environment.getFileManager(
|
|
25822
|
+
var fileManager = environment.getFileManager(path13, currentFileInfo.currentDirectory, this.context, environment);
|
|
25823
25823
|
if (!fileManager) {
|
|
25824
|
-
fileParsedFunc({ message: "Could not find a file-manager for ".concat(
|
|
25824
|
+
fileParsedFunc({ message: "Could not find a file-manager for ".concat(path13) });
|
|
25825
25825
|
return;
|
|
25826
25826
|
}
|
|
25827
25827
|
var loadFileCallback = function(loadedFile2) {
|
|
@@ -25870,15 +25870,15 @@ var require_import_manager = __commonJS({
|
|
|
25870
25870
|
if (importOptions.isPlugin) {
|
|
25871
25871
|
context.mime = "application/javascript";
|
|
25872
25872
|
if (context.syncImport) {
|
|
25873
|
-
loadedFile = pluginLoader.loadPluginSync(
|
|
25873
|
+
loadedFile = pluginLoader.loadPluginSync(path13, currentFileInfo.currentDirectory, context, environment, fileManager);
|
|
25874
25874
|
} else {
|
|
25875
|
-
promise = pluginLoader.loadPlugin(
|
|
25875
|
+
promise = pluginLoader.loadPlugin(path13, currentFileInfo.currentDirectory, context, environment, fileManager);
|
|
25876
25876
|
}
|
|
25877
25877
|
} else {
|
|
25878
25878
|
if (context.syncImport) {
|
|
25879
|
-
loadedFile = fileManager.loadFileSync(
|
|
25879
|
+
loadedFile = fileManager.loadFileSync(path13, currentFileInfo.currentDirectory, context, environment);
|
|
25880
25880
|
} else {
|
|
25881
|
-
promise = fileManager.loadFile(
|
|
25881
|
+
promise = fileManager.loadFile(path13, currentFileInfo.currentDirectory, context, environment, function(err, loadedFile2) {
|
|
25882
25882
|
if (err) {
|
|
25883
25883
|
fileParsedFunc(err);
|
|
25884
25884
|
} else {
|
|
@@ -26744,7 +26744,7 @@ var require_readUInt = __commonJS({
|
|
|
26744
26744
|
var require_tiff = __commonJS({
|
|
26745
26745
|
"pnp:/builds/normed/bundle/.yarn/cache/image-size-patch-bc5785d808-6fbf67bc78.zip/node_modules/image-size/lib/types/tiff.js"(exports2, module2) {
|
|
26746
26746
|
"use strict";
|
|
26747
|
-
var
|
|
26747
|
+
var fs12 = require("fs");
|
|
26748
26748
|
var readUInt = require_readUInt();
|
|
26749
26749
|
function isTIFF(buffer) {
|
|
26750
26750
|
var hex4 = buffer.toString("hex", 0, 4);
|
|
@@ -26753,13 +26753,13 @@ var require_tiff = __commonJS({
|
|
|
26753
26753
|
function readIFD(buffer, filepath, isBigEndian) {
|
|
26754
26754
|
var ifdOffset = readUInt(buffer, 32, 4, isBigEndian);
|
|
26755
26755
|
var bufferSize = 1024;
|
|
26756
|
-
var fileSize =
|
|
26756
|
+
var fileSize = fs12.statSync(filepath).size;
|
|
26757
26757
|
if (ifdOffset + bufferSize > fileSize) {
|
|
26758
26758
|
bufferSize = fileSize - ifdOffset - 10;
|
|
26759
26759
|
}
|
|
26760
26760
|
var endBuffer = new Buffer(bufferSize);
|
|
26761
|
-
var descriptor =
|
|
26762
|
-
|
|
26761
|
+
var descriptor = fs12.openSync(filepath, "r");
|
|
26762
|
+
fs12.readSync(descriptor, endBuffer, 0, bufferSize, ifdOffset);
|
|
26763
26763
|
var ifdBuffer = endBuffer.slice(2);
|
|
26764
26764
|
return ifdBuffer;
|
|
26765
26765
|
}
|
|
@@ -26930,8 +26930,8 @@ var require_detector = __commonJS({
|
|
|
26930
26930
|
var require_lib4 = __commonJS({
|
|
26931
26931
|
"pnp:/builds/normed/bundle/.yarn/cache/image-size-patch-bc5785d808-6fbf67bc78.zip/node_modules/image-size/lib/index.js"(exports2, module2) {
|
|
26932
26932
|
"use strict";
|
|
26933
|
-
var
|
|
26934
|
-
var
|
|
26933
|
+
var fs12 = require("fs");
|
|
26934
|
+
var path13 = require("path");
|
|
26935
26935
|
var detector = require_detector();
|
|
26936
26936
|
var handlers = {};
|
|
26937
26937
|
handlers["bmp"] = require_bmp().detect;
|
|
@@ -26956,33 +26956,33 @@ var require_lib4 = __commonJS({
|
|
|
26956
26956
|
throw new TypeError("unsupported file type: " + type + " (file: " + filepath + ")");
|
|
26957
26957
|
}
|
|
26958
26958
|
function asyncFileToBuffer(filepath, callback) {
|
|
26959
|
-
|
|
26959
|
+
fs12.open(filepath, "r", function(err, descriptor) {
|
|
26960
26960
|
if (err) {
|
|
26961
26961
|
return callback(err);
|
|
26962
26962
|
}
|
|
26963
|
-
var size =
|
|
26963
|
+
var size = fs12.fstatSync(descriptor).size;
|
|
26964
26964
|
if (size <= 0) {
|
|
26965
26965
|
return callback(new Error("File size is not greater than 0 \u2014\u2014 " + filepath));
|
|
26966
26966
|
}
|
|
26967
26967
|
var bufferSize = Math.min(size, MaxBufferSize);
|
|
26968
26968
|
var buffer = new Buffer(bufferSize);
|
|
26969
|
-
|
|
26969
|
+
fs12.read(descriptor, buffer, 0, bufferSize, 0, function(err2) {
|
|
26970
26970
|
if (err2) {
|
|
26971
26971
|
return callback(err2);
|
|
26972
26972
|
}
|
|
26973
|
-
|
|
26973
|
+
fs12.close(descriptor, function(err3) {
|
|
26974
26974
|
callback(err3, buffer);
|
|
26975
26975
|
});
|
|
26976
26976
|
});
|
|
26977
26977
|
});
|
|
26978
26978
|
}
|
|
26979
26979
|
function syncFileToBuffer(filepath) {
|
|
26980
|
-
var descriptor =
|
|
26981
|
-
var size =
|
|
26980
|
+
var descriptor = fs12.openSync(filepath, "r");
|
|
26981
|
+
var size = fs12.fstatSync(descriptor).size;
|
|
26982
26982
|
var bufferSize = Math.min(size, MaxBufferSize);
|
|
26983
26983
|
var buffer = new Buffer(bufferSize);
|
|
26984
|
-
|
|
26985
|
-
|
|
26984
|
+
fs12.readSync(descriptor, buffer, 0, bufferSize, 0);
|
|
26985
|
+
fs12.closeSync(descriptor);
|
|
26986
26986
|
return buffer;
|
|
26987
26987
|
}
|
|
26988
26988
|
module2.exports = function(input, callback) {
|
|
@@ -26992,7 +26992,7 @@ var require_lib4 = __commonJS({
|
|
|
26992
26992
|
if (typeof input !== "string") {
|
|
26993
26993
|
throw new TypeError("invalid invocation");
|
|
26994
26994
|
}
|
|
26995
|
-
var filepath =
|
|
26995
|
+
var filepath = path13.resolve(input);
|
|
26996
26996
|
if (typeof callback === "function") {
|
|
26997
26997
|
asyncFileToBuffer(filepath, function(err, buffer2) {
|
|
26998
26998
|
if (err) {
|
|
@@ -34596,14 +34596,14 @@ var require_pug_parser = __commonJS({
|
|
|
34596
34596
|
*/
|
|
34597
34597
|
parseExtends: function() {
|
|
34598
34598
|
var tok = this.expect("extends");
|
|
34599
|
-
var
|
|
34599
|
+
var path13 = this.expect("path");
|
|
34600
34600
|
return {
|
|
34601
34601
|
type: "Extends",
|
|
34602
34602
|
file: {
|
|
34603
34603
|
type: "FileReference",
|
|
34604
|
-
path:
|
|
34605
|
-
line:
|
|
34606
|
-
column:
|
|
34604
|
+
path: path13.val.trim(),
|
|
34605
|
+
line: path13.loc.start.line,
|
|
34606
|
+
column: path13.loc.start.column,
|
|
34607
34607
|
filename: this.filename
|
|
34608
34608
|
},
|
|
34609
34609
|
line: tok.loc.start.line,
|
|
@@ -34668,10 +34668,10 @@ var require_pug_parser = __commonJS({
|
|
|
34668
34668
|
while (this.peek().type === "filter") {
|
|
34669
34669
|
filters2.push(this.parseIncludeFilter());
|
|
34670
34670
|
}
|
|
34671
|
-
var
|
|
34672
|
-
node.file.path =
|
|
34673
|
-
node.file.line =
|
|
34674
|
-
node.file.column =
|
|
34671
|
+
var path13 = this.expect("path");
|
|
34672
|
+
node.file.path = path13.val.trim();
|
|
34673
|
+
node.file.line = path13.loc.start.line;
|
|
34674
|
+
node.file.column = path13.loc.start.column;
|
|
34675
34675
|
if ((/\.jade$/.test(node.file.path) || /\.pug$/.test(node.file.path)) && !filters2.length) {
|
|
34676
34676
|
node.block = "indent" == this.peek().type ? this.block() : this.emptyBlock(tok.loc.start.line);
|
|
34677
34677
|
if (/\.jade$/.test(node.file.path)) {
|
|
@@ -35138,8 +35138,8 @@ var require_pug_walk = __commonJS({
|
|
|
35138
35138
|
var require_pug_load = __commonJS({
|
|
35139
35139
|
"pnp:/builds/normed/bundle/.yarn/cache/pug-load-npm-3.0.0-dc9f2273d3-1800ec5199.zip/node_modules/pug-load/index.js"(exports2, module2) {
|
|
35140
35140
|
"use strict";
|
|
35141
|
-
var
|
|
35142
|
-
var
|
|
35141
|
+
var fs12 = require("fs");
|
|
35142
|
+
var path13 = require("path");
|
|
35143
35143
|
var walk = require_pug_walk();
|
|
35144
35144
|
var assign = require_object_assign();
|
|
35145
35145
|
module2.exports = load;
|
|
@@ -35153,11 +35153,11 @@ var require_pug_load = __commonJS({
|
|
|
35153
35153
|
if (file.type !== "FileReference") {
|
|
35154
35154
|
throw new Error('Expected file.type to be "FileReference"');
|
|
35155
35155
|
}
|
|
35156
|
-
var
|
|
35156
|
+
var path14, str, raw;
|
|
35157
35157
|
try {
|
|
35158
|
-
|
|
35159
|
-
file.fullPath =
|
|
35160
|
-
raw = options2.read(
|
|
35158
|
+
path14 = options2.resolve(file.path, file.filename, options2);
|
|
35159
|
+
file.fullPath = path14;
|
|
35160
|
+
raw = options2.read(path14, options2);
|
|
35161
35161
|
str = raw.toString("utf8");
|
|
35162
35162
|
} catch (ex) {
|
|
35163
35163
|
ex.message += "\n at " + node.filename + " line " + node.line;
|
|
@@ -35169,7 +35169,7 @@ var require_pug_load = __commonJS({
|
|
|
35169
35169
|
file.ast = load.string(
|
|
35170
35170
|
str,
|
|
35171
35171
|
assign({}, options2, {
|
|
35172
|
-
filename:
|
|
35172
|
+
filename: path14
|
|
35173
35173
|
})
|
|
35174
35174
|
);
|
|
35175
35175
|
}
|
|
@@ -35202,14 +35202,14 @@ var require_pug_load = __commonJS({
|
|
|
35202
35202
|
throw new Error(
|
|
35203
35203
|
'the "basedir" option is required to use includes and extends with "absolute" paths'
|
|
35204
35204
|
);
|
|
35205
|
-
filename =
|
|
35206
|
-
filename[0] === "/" ? options2.basedir :
|
|
35205
|
+
filename = path13.join(
|
|
35206
|
+
filename[0] === "/" ? options2.basedir : path13.dirname(source.trim()),
|
|
35207
35207
|
filename
|
|
35208
35208
|
);
|
|
35209
35209
|
return filename;
|
|
35210
35210
|
};
|
|
35211
35211
|
load.read = function read(filename, options2) {
|
|
35212
|
-
return
|
|
35212
|
+
return fs12.readFileSync(filename);
|
|
35213
35213
|
};
|
|
35214
35214
|
load.validateOptions = function validateOptions(options2) {
|
|
35215
35215
|
if (typeof options2 !== "object") {
|
|
@@ -35855,7 +35855,7 @@ var require_is_promise = __commonJS({
|
|
|
35855
35855
|
var require_jstransformer = __commonJS({
|
|
35856
35856
|
"pnp:/builds/normed/bundle/.yarn/cache/jstransformer-npm-1.0.0-41a47d180a-7bca6e2e2f.zip/node_modules/jstransformer/index.js"(exports2, module2) {
|
|
35857
35857
|
"use strict";
|
|
35858
|
-
var
|
|
35858
|
+
var fs12 = require("fs");
|
|
35859
35859
|
var assert = require("assert");
|
|
35860
35860
|
var Promise2 = require_promise();
|
|
35861
35861
|
var isPromise = require_is_promise();
|
|
@@ -35867,9 +35867,9 @@ var require_jstransformer = __commonJS({
|
|
|
35867
35867
|
tr.normalizeFnAsync = normalizeFnAsync;
|
|
35868
35868
|
tr.normalize = normalize;
|
|
35869
35869
|
tr.normalizeAsync = normalizeAsync;
|
|
35870
|
-
if (
|
|
35871
|
-
tr.readFile = Promise2.denodeify(
|
|
35872
|
-
tr.readFileSync =
|
|
35870
|
+
if (fs12.readFile) {
|
|
35871
|
+
tr.readFile = Promise2.denodeify(fs12.readFile);
|
|
35872
|
+
tr.readFileSync = fs12.readFileSync;
|
|
35873
35873
|
} else {
|
|
35874
35874
|
tr.readFile = function() {
|
|
35875
35875
|
throw new Error("fs.readFile unsupported");
|
|
@@ -36314,8 +36314,8 @@ var require_path_parse = __commonJS({
|
|
|
36314
36314
|
// pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/node-modules-paths.js
|
|
36315
36315
|
var require_node_modules_paths = __commonJS({
|
|
36316
36316
|
"pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/node-modules-paths.js"(exports2, module2) {
|
|
36317
|
-
var
|
|
36318
|
-
var parse =
|
|
36317
|
+
var path13 = require("path");
|
|
36318
|
+
var parse = path13.parse || require_path_parse();
|
|
36319
36319
|
var getNodeModulesDirs = function getNodeModulesDirs2(absoluteStart, modules) {
|
|
36320
36320
|
var prefix = "/";
|
|
36321
36321
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
@@ -36331,7 +36331,7 @@ var require_node_modules_paths = __commonJS({
|
|
|
36331
36331
|
}
|
|
36332
36332
|
return paths.reduce(function(dirs, aPath) {
|
|
36333
36333
|
return dirs.concat(modules.map(function(moduleDir) {
|
|
36334
|
-
return
|
|
36334
|
+
return path13.resolve(prefix, aPath, moduleDir);
|
|
36335
36335
|
}));
|
|
36336
36336
|
}, []);
|
|
36337
36337
|
};
|
|
@@ -36356,7 +36356,7 @@ var require_node_modules_paths = __commonJS({
|
|
|
36356
36356
|
// pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/normalize-options.js
|
|
36357
36357
|
var require_normalize_options = __commonJS({
|
|
36358
36358
|
"pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/normalize-options.js"(exports2, module2) {
|
|
36359
|
-
var
|
|
36359
|
+
var path13 = require("path");
|
|
36360
36360
|
module2.exports = function(_, opts) {
|
|
36361
36361
|
opts = opts || {};
|
|
36362
36362
|
if (opts.forceNodeResolution || !process.versions.pnp)
|
|
@@ -36367,7 +36367,7 @@ var require_normalize_options = __commonJS({
|
|
|
36367
36367
|
if (!parts)
|
|
36368
36368
|
throw new Error(`Assertion failed: Expected the "resolve" package to call the "paths" callback with package names only (got "${request}")`);
|
|
36369
36369
|
if (basedir.charAt(basedir.length - 1) !== `/`)
|
|
36370
|
-
basedir =
|
|
36370
|
+
basedir = path13.join(basedir, `/`);
|
|
36371
36371
|
const api = findPnpApi(basedir);
|
|
36372
36372
|
if (api === null)
|
|
36373
36373
|
return void 0;
|
|
@@ -36379,8 +36379,8 @@ var require_normalize_options = __commonJS({
|
|
|
36379
36379
|
}
|
|
36380
36380
|
if (manifestPath === null)
|
|
36381
36381
|
throw new Error(`Assertion failed: The resolution thinks that "${parts[1]}" is a Node builtin`);
|
|
36382
|
-
const packagePath =
|
|
36383
|
-
const unqualifiedPath = typeof parts[2] !== `undefined` ?
|
|
36382
|
+
const packagePath = path13.dirname(manifestPath);
|
|
36383
|
+
const unqualifiedPath = typeof parts[2] !== `undefined` ? path13.join(packagePath, parts[2]) : packagePath;
|
|
36384
36384
|
return { packagePath, unqualifiedPath };
|
|
36385
36385
|
};
|
|
36386
36386
|
const runPnpResolutionOnArray = (request, paths2) => {
|
|
@@ -36405,9 +36405,9 @@ var require_normalize_options = __commonJS({
|
|
|
36405
36405
|
const resolution = runPnpResolutionOnArray(request, pathsToTest);
|
|
36406
36406
|
if (resolution == null)
|
|
36407
36407
|
return getNodeModulePaths().concat(originalPaths);
|
|
36408
|
-
let nodeModules =
|
|
36408
|
+
let nodeModules = path13.dirname(resolution.packagePath);
|
|
36409
36409
|
if (request.match(/^@[^/]+\//))
|
|
36410
|
-
nodeModules =
|
|
36410
|
+
nodeModules = path13.dirname(nodeModules);
|
|
36411
36411
|
return [nodeModules];
|
|
36412
36412
|
};
|
|
36413
36413
|
let isInsideIterator = false;
|
|
@@ -36663,23 +36663,23 @@ var require_is_core_module = __commonJS({
|
|
|
36663
36663
|
// pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/async.js
|
|
36664
36664
|
var require_async = __commonJS({
|
|
36665
36665
|
"pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/async.js"(exports2, module2) {
|
|
36666
|
-
var
|
|
36666
|
+
var fs12 = require("fs");
|
|
36667
36667
|
var getHomedir = require_homedir();
|
|
36668
|
-
var
|
|
36668
|
+
var path13 = require("path");
|
|
36669
36669
|
var caller = require_caller();
|
|
36670
36670
|
var nodeModulesPaths = require_node_modules_paths();
|
|
36671
36671
|
var normalizeOptions = require_normalize_options();
|
|
36672
36672
|
var isCore = require_is_core_module();
|
|
36673
|
-
var realpathFS = process.platform !== "win32" &&
|
|
36673
|
+
var realpathFS = process.platform !== "win32" && fs12.realpath && typeof fs12.realpath.native === "function" ? fs12.realpath.native : fs12.realpath;
|
|
36674
36674
|
var homedir = getHomedir();
|
|
36675
36675
|
var defaultPaths = function() {
|
|
36676
36676
|
return [
|
|
36677
|
-
|
|
36678
|
-
|
|
36677
|
+
path13.join(homedir, ".node_modules"),
|
|
36678
|
+
path13.join(homedir, ".node_libraries")
|
|
36679
36679
|
];
|
|
36680
36680
|
};
|
|
36681
36681
|
var defaultIsFile = function isFile(file, cb) {
|
|
36682
|
-
|
|
36682
|
+
fs12.stat(file, function(err, stat) {
|
|
36683
36683
|
if (!err) {
|
|
36684
36684
|
return cb(null, stat.isFile() || stat.isFIFO());
|
|
36685
36685
|
}
|
|
@@ -36688,7 +36688,7 @@ var require_async = __commonJS({
|
|
|
36688
36688
|
});
|
|
36689
36689
|
};
|
|
36690
36690
|
var defaultIsDir = function isDirectory(dir, cb) {
|
|
36691
|
-
|
|
36691
|
+
fs12.stat(dir, function(err, stat) {
|
|
36692
36692
|
if (!err) {
|
|
36693
36693
|
return cb(null, stat.isDirectory());
|
|
36694
36694
|
}
|
|
@@ -36725,7 +36725,7 @@ var require_async = __commonJS({
|
|
|
36725
36725
|
var getPackageCandidates = function getPackageCandidates2(x, start, opts) {
|
|
36726
36726
|
var dirs = nodeModulesPaths(start, opts, x);
|
|
36727
36727
|
for (var i = 0; i < dirs.length; i++) {
|
|
36728
|
-
dirs[i] =
|
|
36728
|
+
dirs[i] = path13.join(dirs[i], x);
|
|
36729
36729
|
}
|
|
36730
36730
|
return dirs;
|
|
36731
36731
|
};
|
|
@@ -36745,7 +36745,7 @@ var require_async = __commonJS({
|
|
|
36745
36745
|
opts = normalizeOptions(x, opts);
|
|
36746
36746
|
var isFile = opts.isFile || defaultIsFile;
|
|
36747
36747
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
36748
|
-
var readFile = opts.readFile ||
|
|
36748
|
+
var readFile = opts.readFile || fs12.readFile;
|
|
36749
36749
|
var realpath = opts.realpath || defaultRealpath;
|
|
36750
36750
|
var readPackage = opts.readPackage || defaultReadPackage;
|
|
36751
36751
|
if (opts.readFile && opts.readPackage) {
|
|
@@ -36757,10 +36757,10 @@ var require_async = __commonJS({
|
|
|
36757
36757
|
var packageIterator = opts.packageIterator;
|
|
36758
36758
|
var extensions = opts.extensions || [".js"];
|
|
36759
36759
|
var includeCoreModules = opts.includeCoreModules !== false;
|
|
36760
|
-
var basedir = opts.basedir ||
|
|
36760
|
+
var basedir = opts.basedir || path13.dirname(caller());
|
|
36761
36761
|
var parent = opts.filename || basedir;
|
|
36762
36762
|
opts.paths = opts.paths || defaultPaths();
|
|
36763
|
-
var absoluteStart =
|
|
36763
|
+
var absoluteStart = path13.resolve(basedir);
|
|
36764
36764
|
maybeRealpath(
|
|
36765
36765
|
realpath,
|
|
36766
36766
|
absoluteStart,
|
|
@@ -36773,7 +36773,7 @@ var require_async = __commonJS({
|
|
|
36773
36773
|
var res;
|
|
36774
36774
|
function init(basedir2) {
|
|
36775
36775
|
if (/^(?:\.\.?(?:\/|$)|\/|([A-Za-z]:)?[/\\])/.test(x)) {
|
|
36776
|
-
res =
|
|
36776
|
+
res = path13.resolve(basedir2, x);
|
|
36777
36777
|
if (x === "." || x === ".." || x.slice(-1) === "/") res += "/";
|
|
36778
36778
|
if (/\/$/.test(x) && res === basedir2) {
|
|
36779
36779
|
loadAsDirectory(res, opts.package, onfile);
|
|
@@ -36831,17 +36831,17 @@ var require_async = __commonJS({
|
|
|
36831
36831
|
var file = x3 + exts2[0];
|
|
36832
36832
|
var pkg = loadPackage;
|
|
36833
36833
|
if (pkg) onpkg(null, pkg);
|
|
36834
|
-
else loadpkg(
|
|
36834
|
+
else loadpkg(path13.dirname(file), onpkg);
|
|
36835
36835
|
function onpkg(err2, pkg_, dir) {
|
|
36836
36836
|
pkg = pkg_;
|
|
36837
36837
|
if (err2) return cb2(err2);
|
|
36838
36838
|
if (dir && pkg && opts.pathFilter) {
|
|
36839
|
-
var rfile =
|
|
36839
|
+
var rfile = path13.relative(dir, file);
|
|
36840
36840
|
var rel = rfile.slice(0, rfile.length - exts2[0].length);
|
|
36841
36841
|
var r = opts.pathFilter(pkg, x3, rel);
|
|
36842
36842
|
if (r) return load(
|
|
36843
36843
|
[""].concat(extensions.slice()),
|
|
36844
|
-
|
|
36844
|
+
path13.resolve(dir, r),
|
|
36845
36845
|
pkg
|
|
36846
36846
|
);
|
|
36847
36847
|
}
|
|
@@ -36861,10 +36861,10 @@ var require_async = __commonJS({
|
|
|
36861
36861
|
}
|
|
36862
36862
|
if (/[/\\]node_modules[/\\]*$/.test(dir)) return cb2(null);
|
|
36863
36863
|
maybeRealpath(realpath, dir, opts, function(unwrapErr, pkgdir) {
|
|
36864
|
-
if (unwrapErr) return loadpkg(
|
|
36865
|
-
var pkgfile =
|
|
36864
|
+
if (unwrapErr) return loadpkg(path13.dirname(dir), cb2);
|
|
36865
|
+
var pkgfile = path13.join(pkgdir, "package.json");
|
|
36866
36866
|
isFile(pkgfile, function(err2, ex) {
|
|
36867
|
-
if (!ex) return loadpkg(
|
|
36867
|
+
if (!ex) return loadpkg(path13.dirname(dir), cb2);
|
|
36868
36868
|
readPackage(readFile, pkgfile, function(err3, pkgParam) {
|
|
36869
36869
|
if (err3) cb2(err3);
|
|
36870
36870
|
var pkg = pkgParam;
|
|
@@ -36885,10 +36885,10 @@ var require_async = __commonJS({
|
|
|
36885
36885
|
}
|
|
36886
36886
|
maybeRealpath(realpath, x2, opts, function(unwrapErr, pkgdir) {
|
|
36887
36887
|
if (unwrapErr) return cb2(unwrapErr);
|
|
36888
|
-
var pkgfile =
|
|
36888
|
+
var pkgfile = path13.join(pkgdir, "package.json");
|
|
36889
36889
|
isFile(pkgfile, function(err2, ex) {
|
|
36890
36890
|
if (err2) return cb2(err2);
|
|
36891
|
-
if (!ex) return loadAsFile2(
|
|
36891
|
+
if (!ex) return loadAsFile2(path13.join(x2, "index"), fpkg, cb2);
|
|
36892
36892
|
readPackage(readFile, pkgfile, function(err3, pkgParam) {
|
|
36893
36893
|
if (err3) return cb2(err3);
|
|
36894
36894
|
var pkg = pkgParam;
|
|
@@ -36904,20 +36904,20 @@ var require_async = __commonJS({
|
|
|
36904
36904
|
if (pkg.main === "." || pkg.main === "./") {
|
|
36905
36905
|
pkg.main = "index";
|
|
36906
36906
|
}
|
|
36907
|
-
loadAsFile2(
|
|
36907
|
+
loadAsFile2(path13.resolve(x2, pkg.main), pkg, function(err4, m, pkg2) {
|
|
36908
36908
|
if (err4) return cb2(err4);
|
|
36909
36909
|
if (m) return cb2(null, m, pkg2);
|
|
36910
|
-
if (!pkg2) return loadAsFile2(
|
|
36911
|
-
var dir =
|
|
36910
|
+
if (!pkg2) return loadAsFile2(path13.join(x2, "index"), pkg2, cb2);
|
|
36911
|
+
var dir = path13.resolve(x2, pkg2.main);
|
|
36912
36912
|
loadAsDirectory(dir, pkg2, function(err5, n, pkg3) {
|
|
36913
36913
|
if (err5) return cb2(err5);
|
|
36914
36914
|
if (n) return cb2(null, n, pkg3);
|
|
36915
|
-
loadAsFile2(
|
|
36915
|
+
loadAsFile2(path13.join(x2, "index"), pkg3, cb2);
|
|
36916
36916
|
});
|
|
36917
36917
|
});
|
|
36918
36918
|
return;
|
|
36919
36919
|
}
|
|
36920
|
-
loadAsFile2(
|
|
36920
|
+
loadAsFile2(path13.join(x2, "/index"), pkg, cb2);
|
|
36921
36921
|
});
|
|
36922
36922
|
});
|
|
36923
36923
|
});
|
|
@@ -36925,7 +36925,7 @@ var require_async = __commonJS({
|
|
|
36925
36925
|
function processDirs(cb2, dirs) {
|
|
36926
36926
|
if (dirs.length === 0) return cb2(null, void 0);
|
|
36927
36927
|
var dir = dirs[0];
|
|
36928
|
-
isDirectory(
|
|
36928
|
+
isDirectory(path13.dirname(dir), isdir);
|
|
36929
36929
|
function isdir(err2, isdir2) {
|
|
36930
36930
|
if (err2) return cb2(err2);
|
|
36931
36931
|
if (!isdir2) return processDirs(cb2, dirs.slice(1));
|
|
@@ -37150,23 +37150,23 @@ var require_is_core = __commonJS({
|
|
|
37150
37150
|
var require_sync = __commonJS({
|
|
37151
37151
|
"pnp:/builds/normed/bundle/.yarn/cache/resolve-patch-4254c24959-f345cd37f5.zip/node_modules/resolve/lib/sync.js"(exports2, module2) {
|
|
37152
37152
|
var isCore = require_is_core_module();
|
|
37153
|
-
var
|
|
37154
|
-
var
|
|
37153
|
+
var fs12 = require("fs");
|
|
37154
|
+
var path13 = require("path");
|
|
37155
37155
|
var getHomedir = require_homedir();
|
|
37156
37156
|
var caller = require_caller();
|
|
37157
37157
|
var nodeModulesPaths = require_node_modules_paths();
|
|
37158
37158
|
var normalizeOptions = require_normalize_options();
|
|
37159
|
-
var realpathFS = process.platform !== "win32" &&
|
|
37159
|
+
var realpathFS = process.platform !== "win32" && fs12.realpathSync && typeof fs12.realpathSync.native === "function" ? fs12.realpathSync.native : fs12.realpathSync;
|
|
37160
37160
|
var homedir = getHomedir();
|
|
37161
37161
|
var defaultPaths = function() {
|
|
37162
37162
|
return [
|
|
37163
|
-
|
|
37164
|
-
|
|
37163
|
+
path13.join(homedir, ".node_modules"),
|
|
37164
|
+
path13.join(homedir, ".node_libraries")
|
|
37165
37165
|
];
|
|
37166
37166
|
};
|
|
37167
37167
|
var defaultIsFile = function isFile(file) {
|
|
37168
37168
|
try {
|
|
37169
|
-
var stat =
|
|
37169
|
+
var stat = fs12.statSync(file, { throwIfNoEntry: false });
|
|
37170
37170
|
} catch (e) {
|
|
37171
37171
|
if (e && (e.code === "ENOENT" || e.code === "ENOTDIR")) return false;
|
|
37172
37172
|
throw e;
|
|
@@ -37175,7 +37175,7 @@ var require_sync = __commonJS({
|
|
|
37175
37175
|
};
|
|
37176
37176
|
var defaultIsDir = function isDirectory(dir) {
|
|
37177
37177
|
try {
|
|
37178
|
-
var stat =
|
|
37178
|
+
var stat = fs12.statSync(dir, { throwIfNoEntry: false });
|
|
37179
37179
|
} catch (e) {
|
|
37180
37180
|
if (e && (e.code === "ENOENT" || e.code === "ENOTDIR")) return false;
|
|
37181
37181
|
throw e;
|
|
@@ -37209,7 +37209,7 @@ var require_sync = __commonJS({
|
|
|
37209
37209
|
var getPackageCandidates = function getPackageCandidates2(x, start, opts) {
|
|
37210
37210
|
var dirs = nodeModulesPaths(start, opts, x);
|
|
37211
37211
|
for (var i = 0; i < dirs.length; i++) {
|
|
37212
|
-
dirs[i] =
|
|
37212
|
+
dirs[i] = path13.join(dirs[i], x);
|
|
37213
37213
|
}
|
|
37214
37214
|
return dirs;
|
|
37215
37215
|
};
|
|
@@ -37219,7 +37219,7 @@ var require_sync = __commonJS({
|
|
|
37219
37219
|
}
|
|
37220
37220
|
var opts = normalizeOptions(x, options2);
|
|
37221
37221
|
var isFile = opts.isFile || defaultIsFile;
|
|
37222
|
-
var readFileSync = opts.readFileSync ||
|
|
37222
|
+
var readFileSync = opts.readFileSync || fs12.readFileSync;
|
|
37223
37223
|
var isDirectory = opts.isDirectory || defaultIsDir;
|
|
37224
37224
|
var realpathSync = opts.realpathSync || defaultRealpathSync;
|
|
37225
37225
|
var readPackageSync = opts.readPackageSync || defaultReadPackageSync;
|
|
@@ -37229,12 +37229,12 @@ var require_sync = __commonJS({
|
|
|
37229
37229
|
var packageIterator = opts.packageIterator;
|
|
37230
37230
|
var extensions = opts.extensions || [".js"];
|
|
37231
37231
|
var includeCoreModules = opts.includeCoreModules !== false;
|
|
37232
|
-
var basedir = opts.basedir ||
|
|
37232
|
+
var basedir = opts.basedir || path13.dirname(caller());
|
|
37233
37233
|
var parent = opts.filename || basedir;
|
|
37234
37234
|
opts.paths = opts.paths || defaultPaths();
|
|
37235
|
-
var absoluteStart = maybeRealpathSync(realpathSync,
|
|
37235
|
+
var absoluteStart = maybeRealpathSync(realpathSync, path13.resolve(basedir), opts);
|
|
37236
37236
|
if (/^(?:\.\.?(?:\/|$)|\/|([A-Za-z]:)?[/\\])/.test(x)) {
|
|
37237
|
-
var res =
|
|
37237
|
+
var res = path13.resolve(absoluteStart, x);
|
|
37238
37238
|
if (x === "." || x === ".." || x.slice(-1) === "/") res += "/";
|
|
37239
37239
|
var m = loadAsFileSync(res) || loadAsDirectorySync(res);
|
|
37240
37240
|
if (m) return maybeRealpathSync(realpathSync, m, opts);
|
|
@@ -37248,12 +37248,12 @@ var require_sync = __commonJS({
|
|
|
37248
37248
|
err.code = "MODULE_NOT_FOUND";
|
|
37249
37249
|
throw err;
|
|
37250
37250
|
function loadAsFileSync(x2) {
|
|
37251
|
-
var pkg = loadpkg(
|
|
37251
|
+
var pkg = loadpkg(path13.dirname(x2));
|
|
37252
37252
|
if (pkg && pkg.dir && pkg.pkg && opts.pathFilter) {
|
|
37253
|
-
var rfile =
|
|
37253
|
+
var rfile = path13.relative(pkg.dir, x2);
|
|
37254
37254
|
var r = opts.pathFilter(pkg.pkg, x2, rfile);
|
|
37255
37255
|
if (r) {
|
|
37256
|
-
x2 =
|
|
37256
|
+
x2 = path13.resolve(pkg.dir, r);
|
|
37257
37257
|
}
|
|
37258
37258
|
}
|
|
37259
37259
|
if (isFile(x2)) {
|
|
@@ -37272,9 +37272,9 @@ var require_sync = __commonJS({
|
|
|
37272
37272
|
return;
|
|
37273
37273
|
}
|
|
37274
37274
|
if (/[/\\]node_modules[/\\]*$/.test(dir)) return;
|
|
37275
|
-
var pkgfile =
|
|
37275
|
+
var pkgfile = path13.join(maybeRealpathSync(realpathSync, dir, opts), "package.json");
|
|
37276
37276
|
if (!isFile(pkgfile)) {
|
|
37277
|
-
return loadpkg(
|
|
37277
|
+
return loadpkg(path13.dirname(dir));
|
|
37278
37278
|
}
|
|
37279
37279
|
var pkg = readPackageSync(readFileSync, pkgfile);
|
|
37280
37280
|
if (pkg && opts.packageFilter) {
|
|
@@ -37287,7 +37287,7 @@ var require_sync = __commonJS({
|
|
|
37287
37287
|
return { pkg, dir };
|
|
37288
37288
|
}
|
|
37289
37289
|
function loadAsDirectorySync(x2) {
|
|
37290
|
-
var pkgfile =
|
|
37290
|
+
var pkgfile = path13.join(maybeRealpathSync(realpathSync, x2, opts), "/package.json");
|
|
37291
37291
|
if (isFile(pkgfile)) {
|
|
37292
37292
|
try {
|
|
37293
37293
|
var pkg = readPackageSync(readFileSync, pkgfile);
|
|
@@ -37310,15 +37310,15 @@ var require_sync = __commonJS({
|
|
|
37310
37310
|
pkg.main = "index";
|
|
37311
37311
|
}
|
|
37312
37312
|
try {
|
|
37313
|
-
var m2 = loadAsFileSync(
|
|
37313
|
+
var m2 = loadAsFileSync(path13.resolve(x2, pkg.main));
|
|
37314
37314
|
if (m2) return m2;
|
|
37315
|
-
var n2 = loadAsDirectorySync(
|
|
37315
|
+
var n2 = loadAsDirectorySync(path13.resolve(x2, pkg.main));
|
|
37316
37316
|
if (n2) return n2;
|
|
37317
37317
|
} catch (e) {
|
|
37318
37318
|
}
|
|
37319
37319
|
}
|
|
37320
37320
|
}
|
|
37321
|
-
return loadAsFileSync(
|
|
37321
|
+
return loadAsFileSync(path13.join(x2, "/index"));
|
|
37322
37322
|
}
|
|
37323
37323
|
function loadNodeModulesSync(x2, start) {
|
|
37324
37324
|
var thunk = function() {
|
|
@@ -37327,7 +37327,7 @@ var require_sync = __commonJS({
|
|
|
37327
37327
|
var dirs = packageIterator ? packageIterator(x2, start, thunk, opts) : thunk();
|
|
37328
37328
|
for (var i = 0; i < dirs.length; i++) {
|
|
37329
37329
|
var dir = dirs[i];
|
|
37330
|
-
if (isDirectory(
|
|
37330
|
+
if (isDirectory(path13.dirname(dir))) {
|
|
37331
37331
|
var m2 = loadAsFileSync(dir);
|
|
37332
37332
|
if (m2) return m2;
|
|
37333
37333
|
var n2 = loadAsDirectorySync(dir);
|
|
@@ -66317,7 +66317,7 @@ var require_sources = __commonJS({
|
|
|
66317
66317
|
var require_build = __commonJS({
|
|
66318
66318
|
"pnp:/builds/normed/bundle/.yarn/cache/pug-runtime-npm-3.0.1-13038c62ae-d34ee1b951.zip/node_modules/pug-runtime/build.js"(exports2, module2) {
|
|
66319
66319
|
"use strict";
|
|
66320
|
-
var
|
|
66320
|
+
var fs12 = require("fs");
|
|
66321
66321
|
var dependencies = require_dependencies();
|
|
66322
66322
|
var internals = require_internals();
|
|
66323
66323
|
var sources = require_sources();
|
|
@@ -68083,8 +68083,8 @@ var require_wrap = __commonJS({
|
|
|
68083
68083
|
var require_lib14 = __commonJS({
|
|
68084
68084
|
"pnp:/builds/normed/bundle/.yarn/cache/pug-npm-3.0.3-9b210cb01a-a883647575.zip/node_modules/pug/lib/index.js"(exports2) {
|
|
68085
68085
|
"use strict";
|
|
68086
|
-
var
|
|
68087
|
-
var
|
|
68086
|
+
var fs12 = require("fs");
|
|
68087
|
+
var path13 = require("path");
|
|
68088
68088
|
var lex = require_pug_lexer();
|
|
68089
68089
|
var stripComments = require_pug_strip_comments();
|
|
68090
68090
|
var parse = require_pug_parser();
|
|
@@ -68147,7 +68147,7 @@ var require_lib14 = __commonJS({
|
|
|
68147
68147
|
},
|
|
68148
68148
|
parse: function(tokens, options3) {
|
|
68149
68149
|
tokens = tokens.map(function(token) {
|
|
68150
|
-
if (token.type === "path" &&
|
|
68150
|
+
if (token.type === "path" && path13.extname(token.val) === "") {
|
|
68151
68151
|
return {
|
|
68152
68152
|
type: "path",
|
|
68153
68153
|
loc: token.loc,
|
|
@@ -68245,7 +68245,7 @@ var require_lib14 = __commonJS({
|
|
|
68245
68245
|
if (options2.cache && exports2.cache[key]) {
|
|
68246
68246
|
return exports2.cache[key];
|
|
68247
68247
|
} else {
|
|
68248
|
-
if (str === void 0) str =
|
|
68248
|
+
if (str === void 0) str = fs12.readFileSync(options2.filename, "utf8");
|
|
68249
68249
|
var templ = exports2.compile(str, options2);
|
|
68250
68250
|
if (options2.cache) exports2.cache[key] = templ;
|
|
68251
68251
|
return templ;
|
|
@@ -68307,9 +68307,9 @@ var require_lib14 = __commonJS({
|
|
|
68307
68307
|
exports2.compileClient = function(str, options2) {
|
|
68308
68308
|
return exports2.compileClientWithDependenciesTracked(str, options2).body;
|
|
68309
68309
|
};
|
|
68310
|
-
exports2.compileFile = function(
|
|
68310
|
+
exports2.compileFile = function(path14, options2) {
|
|
68311
68311
|
options2 = options2 || {};
|
|
68312
|
-
options2.filename =
|
|
68312
|
+
options2.filename = path14;
|
|
68313
68313
|
return handleTemplateCache(options2);
|
|
68314
68314
|
};
|
|
68315
68315
|
exports2.render = function(str, options2, fn) {
|
|
@@ -68331,40 +68331,40 @@ var require_lib14 = __commonJS({
|
|
|
68331
68331
|
}
|
|
68332
68332
|
return handleTemplateCache(options2, str)(options2);
|
|
68333
68333
|
};
|
|
68334
|
-
exports2.renderFile = function(
|
|
68334
|
+
exports2.renderFile = function(path14, options2, fn) {
|
|
68335
68335
|
if ("function" == typeof options2) {
|
|
68336
68336
|
fn = options2, options2 = void 0;
|
|
68337
68337
|
}
|
|
68338
68338
|
if (typeof fn === "function") {
|
|
68339
68339
|
var res;
|
|
68340
68340
|
try {
|
|
68341
|
-
res = exports2.renderFile(
|
|
68341
|
+
res = exports2.renderFile(path14, options2);
|
|
68342
68342
|
} catch (ex) {
|
|
68343
68343
|
return fn(ex);
|
|
68344
68344
|
}
|
|
68345
68345
|
return fn(null, res);
|
|
68346
68346
|
}
|
|
68347
68347
|
options2 = options2 || {};
|
|
68348
|
-
options2.filename =
|
|
68348
|
+
options2.filename = path14;
|
|
68349
68349
|
return handleTemplateCache(options2)(options2);
|
|
68350
68350
|
};
|
|
68351
|
-
exports2.compileFileClient = function(
|
|
68352
|
-
var key =
|
|
68351
|
+
exports2.compileFileClient = function(path14, options2) {
|
|
68352
|
+
var key = path14 + ":client";
|
|
68353
68353
|
options2 = options2 || {};
|
|
68354
|
-
options2.filename =
|
|
68354
|
+
options2.filename = path14;
|
|
68355
68355
|
if (options2.cache && exports2.cache[key]) {
|
|
68356
68356
|
return exports2.cache[key];
|
|
68357
68357
|
}
|
|
68358
|
-
var str =
|
|
68358
|
+
var str = fs12.readFileSync(options2.filename, "utf8");
|
|
68359
68359
|
var out = exports2.compileClient(str, options2);
|
|
68360
68360
|
if (options2.cache) exports2.cache[key] = out;
|
|
68361
68361
|
return out;
|
|
68362
68362
|
};
|
|
68363
|
-
exports2.__express = function(
|
|
68363
|
+
exports2.__express = function(path14, options2, fn) {
|
|
68364
68364
|
if (options2.compileDebug == void 0 && process.env.NODE_ENV === "production") {
|
|
68365
68365
|
options2.compileDebug = false;
|
|
68366
68366
|
}
|
|
68367
|
-
exports2.renderFile(
|
|
68367
|
+
exports2.renderFile(path14, options2, fn);
|
|
68368
68368
|
};
|
|
68369
68369
|
}
|
|
68370
68370
|
});
|
|
@@ -68376,7 +68376,7 @@ var require_lib15 = __commonJS({
|
|
|
68376
68376
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68377
68377
|
exports2.pnpPlugin = void 0;
|
|
68378
68378
|
var tslib_1 = require_tslib();
|
|
68379
|
-
var
|
|
68379
|
+
var fs12 = tslib_1.__importStar(require("fs"));
|
|
68380
68380
|
var path_1 = tslib_1.__importDefault(require("path"));
|
|
68381
68381
|
var matchAll = /()/;
|
|
68382
68382
|
var defaultExtensions = [`.tsx`, `.ts`, `.jsx`, `.mjs`, `.cjs`, `.js`, `.css`, `.json`];
|
|
@@ -68388,17 +68388,17 @@ var require_lib15 = __commonJS({
|
|
|
68388
68388
|
return external;
|
|
68389
68389
|
});
|
|
68390
68390
|
}
|
|
68391
|
-
function isExternal(
|
|
68391
|
+
function isExternal(path13, externals) {
|
|
68392
68392
|
for (const external of externals) {
|
|
68393
68393
|
if (typeof external === `object`) {
|
|
68394
|
-
if (
|
|
68394
|
+
if (path13.length >= external.prefix.length + external.suffix.length && path13.startsWith(external.prefix) && path13.endsWith(external.suffix)) {
|
|
68395
68395
|
return true;
|
|
68396
68396
|
}
|
|
68397
68397
|
} else {
|
|
68398
|
-
if (
|
|
68398
|
+
if (path13 === external)
|
|
68399
68399
|
return true;
|
|
68400
68400
|
if (!external.startsWith(`/`) && !external.startsWith(`./`) && !external.startsWith(`../`) && external !== `.` && external !== `..`) {
|
|
68401
|
-
if (
|
|
68401
|
+
if (path13.startsWith(`${external}/`)) {
|
|
68402
68402
|
return true;
|
|
68403
68403
|
}
|
|
68404
68404
|
}
|
|
@@ -68408,7 +68408,7 @@ var require_lib15 = __commonJS({
|
|
|
68408
68408
|
}
|
|
68409
68409
|
async function defaultOnLoad(args) {
|
|
68410
68410
|
return {
|
|
68411
|
-
contents: await
|
|
68411
|
+
contents: await fs12.promises.readFile(args.path),
|
|
68412
68412
|
loader: `default`,
|
|
68413
68413
|
// For regular imports in the `file` namespace, resolveDir is the directory the
|
|
68414
68414
|
// file being resolved lives in. For all other virtual modules, this defaults to
|
|
@@ -68473,10 +68473,10 @@ var require_lib15 = __commonJS({
|
|
|
68473
68473
|
const pnpApi = findPnpApi(effectiveImporter);
|
|
68474
68474
|
if (!pnpApi)
|
|
68475
68475
|
return void 0;
|
|
68476
|
-
let
|
|
68476
|
+
let path13 = null;
|
|
68477
68477
|
let error;
|
|
68478
68478
|
try {
|
|
68479
|
-
|
|
68479
|
+
path13 = pnpApi.resolveRequest(args.path, effectiveImporter, {
|
|
68480
68480
|
conditions,
|
|
68481
68481
|
considerBuiltins: isPlatformNode,
|
|
68482
68482
|
extensions
|
|
@@ -68485,16 +68485,16 @@ var require_lib15 = __commonJS({
|
|
|
68485
68485
|
error = e;
|
|
68486
68486
|
}
|
|
68487
68487
|
const watchFiles = [pnpApi.resolveRequest(`pnpapi`, null)];
|
|
68488
|
-
if (
|
|
68489
|
-
const locator = pnpApi.findPackageLocator(
|
|
68488
|
+
if (path13) {
|
|
68489
|
+
const locator = pnpApi.findPackageLocator(path13);
|
|
68490
68490
|
if (locator) {
|
|
68491
68491
|
const info = pnpApi.getPackageInformation(locator);
|
|
68492
68492
|
if ((info === null || info === void 0 ? void 0 : info.linkType) === `SOFT`) {
|
|
68493
|
-
watchFiles.push((_b2 = (_a2 = pnpApi.resolveVirtual) === null || _a2 === void 0 ? void 0 : _a2.call(pnpApi,
|
|
68493
|
+
watchFiles.push((_b2 = (_a2 = pnpApi.resolveVirtual) === null || _a2 === void 0 ? void 0 : _a2.call(pnpApi, path13)) !== null && _b2 !== void 0 ? _b2 : path13);
|
|
68494
68494
|
}
|
|
68495
68495
|
}
|
|
68496
68496
|
}
|
|
68497
|
-
return onResolve(args, { resolvedPath:
|
|
68497
|
+
return onResolve(args, { resolvedPath: path13, error, watchFiles });
|
|
68498
68498
|
});
|
|
68499
68499
|
if (build2.onLoad !== null) {
|
|
68500
68500
|
build2.onLoad({ filter: filter2 }, onLoad);
|
|
@@ -68643,19 +68643,19 @@ function __throw__(error) {
|
|
|
68643
68643
|
}
|
|
68644
68644
|
function makePartialRefinement(definition) {
|
|
68645
68645
|
const possibleKeys = Object.keys(definition);
|
|
68646
|
-
function doRefinement(d,
|
|
68646
|
+
function doRefinement(d, path13, v, depth = 0) {
|
|
68647
68647
|
if (typeof d === "function") {
|
|
68648
|
-
return d(
|
|
68648
|
+
return d(path13, v);
|
|
68649
68649
|
}
|
|
68650
68650
|
if (typeof v !== "object" || v === null) {
|
|
68651
|
-
return new import_refinements.RefinementError(
|
|
68651
|
+
return new import_refinements.RefinementError(path13, `to be an Object`);
|
|
68652
68652
|
}
|
|
68653
68653
|
const o = {};
|
|
68654
68654
|
for (let k of possibleKeys) {
|
|
68655
68655
|
if (depth < 1 && !(k in v)) {
|
|
68656
68656
|
continue;
|
|
68657
68657
|
}
|
|
68658
|
-
const result = doRefinement(d[k],
|
|
68658
|
+
const result = doRefinement(d[k], path13.concat(k), v[k], depth + 1);
|
|
68659
68659
|
if (result instanceof import_refinements.RefinementError) {
|
|
68660
68660
|
return result;
|
|
68661
68661
|
}
|
|
@@ -68663,7 +68663,7 @@ function makePartialRefinement(definition) {
|
|
|
68663
68663
|
}
|
|
68664
68664
|
return o;
|
|
68665
68665
|
}
|
|
68666
|
-
return (
|
|
68666
|
+
return (path13, v) => doRefinement(definition, path13, v);
|
|
68667
68667
|
}
|
|
68668
68668
|
|
|
68669
68669
|
// pnp:/builds/normed/bundle/packages/bundle/src/readConfigs.ts
|
|
@@ -69168,10 +69168,17 @@ function isRelativeAssetPath(assetPath) {
|
|
|
69168
69168
|
function isPugReference(assetPath) {
|
|
69169
69169
|
return assetPath.endsWith(".pug") && isRelativeAssetPath(assetPath);
|
|
69170
69170
|
}
|
|
69171
|
+
function isLessReference(assetPath) {
|
|
69172
|
+
return assetPath.endsWith(".less") && isRelativeAssetPath(assetPath);
|
|
69173
|
+
}
|
|
69171
69174
|
var discoveredPugReferences = /* @__PURE__ */ new Map();
|
|
69175
|
+
var discoveredLessReferences = /* @__PURE__ */ new Map();
|
|
69172
69176
|
function clearDiscoveredPugReferences() {
|
|
69173
69177
|
discoveredPugReferences.clear();
|
|
69174
69178
|
}
|
|
69179
|
+
function clearDiscoveredLessReferences() {
|
|
69180
|
+
discoveredLessReferences.clear();
|
|
69181
|
+
}
|
|
69175
69182
|
function applyAssetNamesTemplate(template, originalPath, hash, baseDir) {
|
|
69176
69183
|
const ext = import_path5.default.extname(originalPath).slice(1);
|
|
69177
69184
|
const name3 = import_path5.default.basename(originalPath, import_path5.default.extname(originalPath));
|
|
@@ -69182,6 +69189,7 @@ function applyAssetNamesTemplate(template, originalPath, hash, baseDir) {
|
|
|
69182
69189
|
async function processHtmlAssets(html, pugFilePath, options2) {
|
|
69183
69190
|
const assets = [];
|
|
69184
69191
|
const pugReferences = [];
|
|
69192
|
+
const lessReferences = [];
|
|
69185
69193
|
const assetNames = options2.assetNames || "[name]-[hash]";
|
|
69186
69194
|
const outdir = options2.outdir || ".";
|
|
69187
69195
|
const outbase = options2.outbase || import_path5.default.dirname(pugFilePath);
|
|
@@ -69207,6 +69215,7 @@ async function processHtmlAssets(html, pugFilePath, options2) {
|
|
|
69207
69215
|
}
|
|
69208
69216
|
}
|
|
69209
69217
|
const discoveredPugPaths = /* @__PURE__ */ new Set();
|
|
69218
|
+
const discoveredLessPaths = /* @__PURE__ */ new Set();
|
|
69210
69219
|
for (const { fullMatch, attr, value } of matches) {
|
|
69211
69220
|
let newValue = value;
|
|
69212
69221
|
if (attr === "srcset") {
|
|
@@ -69252,6 +69261,12 @@ async function processHtmlAssets(html, pugFilePath, options2) {
|
|
|
69252
69261
|
discoveredPugPaths.add(absolutePath);
|
|
69253
69262
|
pugReferences.push({ originalHref: value, absolutePath });
|
|
69254
69263
|
}
|
|
69264
|
+
} else if (isLessReference(value)) {
|
|
69265
|
+
const absolutePath = import_path5.default.resolve(pugDir, value);
|
|
69266
|
+
if (!discoveredLessPaths.has(absolutePath)) {
|
|
69267
|
+
discoveredLessPaths.add(absolutePath);
|
|
69268
|
+
lessReferences.push({ originalHref: value, absolutePath });
|
|
69269
|
+
}
|
|
69255
69270
|
} else if (isRelativeAssetPath(value)) {
|
|
69256
69271
|
const hashedPath = await processAsset(
|
|
69257
69272
|
value,
|
|
@@ -69273,7 +69288,7 @@ async function processHtmlAssets(html, pugFilePath, options2) {
|
|
|
69273
69288
|
modifiedHtml = modifiedHtml.replace(fullMatch, newFullMatch);
|
|
69274
69289
|
}
|
|
69275
69290
|
}
|
|
69276
|
-
return { html: modifiedHtml, assets, pugReferences };
|
|
69291
|
+
return { html: modifiedHtml, assets, pugReferences, lessReferences };
|
|
69277
69292
|
}
|
|
69278
69293
|
async function processAsset(assetPath, pugDir, pugFilePath, outdir, outbase, assetNames, publicPath, assets, processedAssets) {
|
|
69279
69294
|
const absoluteSource = import_path5.default.resolve(pugDir, assetPath);
|
|
@@ -69315,10 +69330,10 @@ async function processAsset(assetPath, pugDir, pugFilePath, outdir, outbase, ass
|
|
|
69315
69330
|
}
|
|
69316
69331
|
}
|
|
69317
69332
|
async function copyAssets(assets) {
|
|
69318
|
-
const
|
|
69333
|
+
const written = /* @__PURE__ */ new Set();
|
|
69319
69334
|
for (const asset of assets) {
|
|
69320
|
-
if (
|
|
69321
|
-
|
|
69335
|
+
if (written.has(asset.absoluteOutput)) continue;
|
|
69336
|
+
written.add(asset.absoluteOutput);
|
|
69322
69337
|
const outputDir = import_path5.default.dirname(asset.absoluteOutput);
|
|
69323
69338
|
await import_fs4.default.promises.mkdir(outputDir, { recursive: true });
|
|
69324
69339
|
await import_fs4.default.promises.copyFile(asset.absoluteSource, asset.absoluteOutput);
|
|
@@ -69407,12 +69422,16 @@ async function loadAsEntrypoint(filepath, options2) {
|
|
|
69407
69422
|
const {
|
|
69408
69423
|
html: processedHtml,
|
|
69409
69424
|
assets,
|
|
69410
|
-
pugReferences
|
|
69425
|
+
pugReferences,
|
|
69426
|
+
lessReferences
|
|
69411
69427
|
} = await processHtmlAssets(contents, filepath, options2);
|
|
69412
69428
|
contents = processedHtml;
|
|
69413
69429
|
if (pugReferences.length > 0) {
|
|
69414
69430
|
discoveredPugReferences.set(filepath, pugReferences);
|
|
69415
69431
|
}
|
|
69432
|
+
if (lessReferences.length > 0) {
|
|
69433
|
+
discoveredLessReferences.set(filepath, lessReferences);
|
|
69434
|
+
}
|
|
69416
69435
|
if (assets.length > 0) {
|
|
69417
69436
|
await copyAssets(assets);
|
|
69418
69437
|
}
|
|
@@ -69580,11 +69599,11 @@ function createCssExternalUrlsPlugin(patterns) {
|
|
|
69580
69599
|
name: name3,
|
|
69581
69600
|
setup(build2) {
|
|
69582
69601
|
build2.onResolve({ filter: /.*/ }, (args) => {
|
|
69583
|
-
const
|
|
69602
|
+
const path13 = args.path;
|
|
69584
69603
|
for (const regex of regexPatterns) {
|
|
69585
|
-
if (regex.test(
|
|
69604
|
+
if (regex.test(path13)) {
|
|
69586
69605
|
return {
|
|
69587
|
-
path:
|
|
69606
|
+
path: path13,
|
|
69588
69607
|
external: true
|
|
69589
69608
|
};
|
|
69590
69609
|
}
|
|
@@ -69595,11 +69614,60 @@ function createCssExternalUrlsPlugin(patterns) {
|
|
|
69595
69614
|
};
|
|
69596
69615
|
}
|
|
69597
69616
|
|
|
69617
|
+
// pnp:/builds/normed/bundle/packages/bundle/src/esbuild-plugins/css_url_resolver.ts
|
|
69618
|
+
var import_path7 = __toESM(require("path"));
|
|
69619
|
+
var import_fs6 = __toESM(require("fs"));
|
|
69620
|
+
function isRelativeAssetPath2(assetPath) {
|
|
69621
|
+
if (!assetPath) return false;
|
|
69622
|
+
if (assetPath.startsWith("#")) return false;
|
|
69623
|
+
if (assetPath.startsWith("//")) return false;
|
|
69624
|
+
if (assetPath.startsWith("/")) return false;
|
|
69625
|
+
try {
|
|
69626
|
+
new URL(assetPath);
|
|
69627
|
+
return false;
|
|
69628
|
+
} catch {
|
|
69629
|
+
return true;
|
|
69630
|
+
}
|
|
69631
|
+
}
|
|
69632
|
+
function createCssUrlResolverPlugin() {
|
|
69633
|
+
const name3 = "css-url-resolver";
|
|
69634
|
+
return {
|
|
69635
|
+
name: name3,
|
|
69636
|
+
setup(build2) {
|
|
69637
|
+
build2.onResolve({ filter: /.*/ }, (args) => {
|
|
69638
|
+
if (args.kind !== "url-token") {
|
|
69639
|
+
return void 0;
|
|
69640
|
+
}
|
|
69641
|
+
const urlPath = args.path;
|
|
69642
|
+
if (!isRelativeAssetPath2(urlPath)) {
|
|
69643
|
+
return {
|
|
69644
|
+
path: urlPath,
|
|
69645
|
+
external: true
|
|
69646
|
+
};
|
|
69647
|
+
}
|
|
69648
|
+
if (args.resolveDir) {
|
|
69649
|
+
const resolvedPath = import_path7.default.resolve(args.resolveDir, urlPath);
|
|
69650
|
+
if (import_fs6.default.existsSync(resolvedPath)) {
|
|
69651
|
+
return {
|
|
69652
|
+
path: resolvedPath,
|
|
69653
|
+
namespace: "file"
|
|
69654
|
+
};
|
|
69655
|
+
}
|
|
69656
|
+
}
|
|
69657
|
+
return {
|
|
69658
|
+
path: urlPath,
|
|
69659
|
+
external: true
|
|
69660
|
+
};
|
|
69661
|
+
});
|
|
69662
|
+
}
|
|
69663
|
+
};
|
|
69664
|
+
}
|
|
69665
|
+
|
|
69598
69666
|
// pnp:/builds/normed/bundle/packages/bundle/src/builders/esbuilder.ts
|
|
69599
69667
|
var import_esbuild_plugin_pnp = __toESM(require_lib15());
|
|
69600
69668
|
var ts = __toESM(require("typescript"));
|
|
69601
|
-
var
|
|
69602
|
-
var
|
|
69669
|
+
var import_path8 = __toESM(require("path"));
|
|
69670
|
+
var import_fs7 = __toESM(require("fs"));
|
|
69603
69671
|
import_chalk3.default.level = 3;
|
|
69604
69672
|
function rewritePugReferencesInHtml(html, pugReferences, pugToOutputPath) {
|
|
69605
69673
|
let result = html;
|
|
@@ -69611,6 +69679,16 @@ function rewritePugReferencesInHtml(html, pugReferences, pugToOutputPath) {
|
|
|
69611
69679
|
}
|
|
69612
69680
|
return result;
|
|
69613
69681
|
}
|
|
69682
|
+
function rewriteLessReferencesInHtml(html, lessReferences, lessToOutputPath) {
|
|
69683
|
+
let result = html;
|
|
69684
|
+
for (const ref of lessReferences) {
|
|
69685
|
+
const outputPath = lessToOutputPath.get(ref.absolutePath);
|
|
69686
|
+
if (outputPath) {
|
|
69687
|
+
result = result.split(ref.originalHref).join(outputPath);
|
|
69688
|
+
}
|
|
69689
|
+
}
|
|
69690
|
+
return result;
|
|
69691
|
+
}
|
|
69614
69692
|
function outExt(inExt) {
|
|
69615
69693
|
if (inExt.match(/^((c|m)?sx?|tsx?)$/)) {
|
|
69616
69694
|
return "js";
|
|
@@ -69695,6 +69773,8 @@ var esbuilder = {
|
|
|
69695
69773
|
load_pug_default,
|
|
69696
69774
|
load_ts_js_default({ sourceRelativeDirnameFilename: true, basedir: indir }),
|
|
69697
69775
|
...externalUrlsPlugin ? [externalUrlsPlugin] : [],
|
|
69776
|
+
createCssUrlResolverPlugin(),
|
|
69777
|
+
// Handle CSS url() before PnP to prevent data URIs and relative paths from being treated as packages
|
|
69698
69778
|
(0, import_esbuild_plugin_pnp.pnpPlugin)()
|
|
69699
69779
|
// if running in yarn/other pnp env
|
|
69700
69780
|
],
|
|
@@ -69714,10 +69794,14 @@ var esbuilder = {
|
|
|
69714
69794
|
)
|
|
69715
69795
|
);
|
|
69716
69796
|
clearDiscoveredPugReferences();
|
|
69797
|
+
clearDiscoveredLessReferences();
|
|
69717
69798
|
const pugHtmlOutputs = /* @__PURE__ */ new Map();
|
|
69718
69799
|
const pugToOutputPath = /* @__PURE__ */ new Map();
|
|
69800
|
+
const lessToOutputPath = /* @__PURE__ */ new Map();
|
|
69719
69801
|
const processedPugFiles = /* @__PURE__ */ new Set();
|
|
69802
|
+
const processedLessFiles = /* @__PURE__ */ new Set();
|
|
69720
69803
|
const pendingPugFiles = [];
|
|
69804
|
+
const pendingLessFiles = [];
|
|
69721
69805
|
const processOutputFiles = async (result, currentOutputFilesMap, isDiscoveredBuild) => {
|
|
69722
69806
|
if (result.errors.length || result.warnings.length) {
|
|
69723
69807
|
log_default.info(`Build completed with errors or warnings:`, {
|
|
@@ -69728,7 +69812,7 @@ var esbuilder = {
|
|
|
69728
69812
|
}
|
|
69729
69813
|
log_default.debug(
|
|
69730
69814
|
`Got output files:`,
|
|
69731
|
-
result.outputFiles.map((f) =>
|
|
69815
|
+
result.outputFiles.map((f) => import_path8.default.relative(outdir, f.path))
|
|
69732
69816
|
);
|
|
69733
69817
|
const writers = [];
|
|
69734
69818
|
for (const file of result.outputFiles) {
|
|
@@ -69738,7 +69822,7 @@ var esbuilder = {
|
|
|
69738
69822
|
}
|
|
69739
69823
|
return c5;
|
|
69740
69824
|
};
|
|
69741
|
-
const relativeFilePath =
|
|
69825
|
+
const relativeFilePath = import_path8.default.relative(outdir, file.path);
|
|
69742
69826
|
let relativeTarget = relativeFilePath;
|
|
69743
69827
|
let content = file.contents;
|
|
69744
69828
|
let transforms = [];
|
|
@@ -69777,10 +69861,11 @@ var esbuilder = {
|
|
|
69777
69861
|
const sourcePath = oFM_result?.sourcePath;
|
|
69778
69862
|
if (isHtmlOutput && sourcePath) {
|
|
69779
69863
|
const pugRefs = discoveredPugReferences.get(sourcePath) || [];
|
|
69864
|
+
const lessRefs = discoveredLessReferences.get(sourcePath) || [];
|
|
69780
69865
|
pugToOutputPath.set(sourcePath, relativeTarget);
|
|
69781
69866
|
for (const ref of pugRefs) {
|
|
69782
69867
|
if (!processedPugFiles.has(ref.absolutePath) && !pendingPugFiles.includes(ref.absolutePath)) {
|
|
69783
|
-
if (
|
|
69868
|
+
if (import_fs7.default.existsSync(ref.absolutePath)) {
|
|
69784
69869
|
pendingPugFiles.push(ref.absolutePath);
|
|
69785
69870
|
log_default.debug(
|
|
69786
69871
|
`Discovered pug reference: ${ref.originalHref} -> ${ref.absolutePath}`
|
|
@@ -69792,15 +69877,36 @@ var esbuilder = {
|
|
|
69792
69877
|
}
|
|
69793
69878
|
}
|
|
69794
69879
|
}
|
|
69880
|
+
for (const ref of lessRefs) {
|
|
69881
|
+
if (!processedLessFiles.has(ref.absolutePath) && !pendingLessFiles.includes(ref.absolutePath)) {
|
|
69882
|
+
if (import_fs7.default.existsSync(ref.absolutePath)) {
|
|
69883
|
+
pendingLessFiles.push(ref.absolutePath);
|
|
69884
|
+
log_default.debug(
|
|
69885
|
+
`Discovered less reference: ${ref.originalHref} -> ${ref.absolutePath}`
|
|
69886
|
+
);
|
|
69887
|
+
} else {
|
|
69888
|
+
log_default.warn(
|
|
69889
|
+
`Referenced less file not found: ${ref.originalHref} (resolved to ${ref.absolutePath})`
|
|
69890
|
+
);
|
|
69891
|
+
}
|
|
69892
|
+
}
|
|
69893
|
+
}
|
|
69795
69894
|
pugHtmlOutputs.set(sourcePath, {
|
|
69796
69895
|
content: file.text,
|
|
69797
69896
|
sourcePath,
|
|
69798
|
-
outputPath:
|
|
69799
|
-
pugReferences: pugRefs
|
|
69897
|
+
outputPath: import_path8.default.join(outdir, relativeTarget),
|
|
69898
|
+
pugReferences: pugRefs,
|
|
69899
|
+
lessReferences: lessRefs
|
|
69800
69900
|
});
|
|
69801
69901
|
} else {
|
|
69902
|
+
if (relativeTarget.endsWith(".css") && oFM_result?.entrypoint?.infile.extension === "less") {
|
|
69903
|
+
lessToOutputPath.set(
|
|
69904
|
+
oFM_result.entrypoint.infile.absolute,
|
|
69905
|
+
relativeTarget
|
|
69906
|
+
);
|
|
69907
|
+
}
|
|
69802
69908
|
const promise = fileWriter.writeFile(
|
|
69803
|
-
|
|
69909
|
+
import_path8.default.join(outdir, relativeTarget),
|
|
69804
69910
|
applyTransforms(content, transforms),
|
|
69805
69911
|
{ encoding: "utf-8" }
|
|
69806
69912
|
);
|
|
@@ -69830,6 +69936,9 @@ var esbuilder = {
|
|
|
69830
69936
|
if (entrypoint.infile.extension === "pug") {
|
|
69831
69937
|
processedPugFiles.add(entrypoint.infile.absolute);
|
|
69832
69938
|
}
|
|
69939
|
+
if (entrypoint.infile.extension === "less") {
|
|
69940
|
+
processedLessFiles.add(entrypoint.infile.absolute);
|
|
69941
|
+
}
|
|
69833
69942
|
}
|
|
69834
69943
|
const extendedOutputFilesMap = /* @__PURE__ */ new Map();
|
|
69835
69944
|
for (const [key, value] of outputFilesMap.entries()) {
|
|
@@ -69856,7 +69965,7 @@ var esbuilder = {
|
|
|
69856
69965
|
);
|
|
69857
69966
|
const discoveredOutputFilesMap = /* @__PURE__ */ new Map();
|
|
69858
69967
|
for (const pugSourcePath of newEntryPoints) {
|
|
69859
|
-
const relativeSource =
|
|
69968
|
+
const relativeSource = import_path8.default.relative(indir, pugSourcePath);
|
|
69860
69969
|
discoveredOutputFilesMap.set(relativeSource, {
|
|
69861
69970
|
entrypoint: void 0,
|
|
69862
69971
|
sourcePath: pugSourcePath,
|
|
@@ -69877,8 +69986,41 @@ var esbuilder = {
|
|
|
69877
69986
|
true
|
|
69878
69987
|
);
|
|
69879
69988
|
}
|
|
69989
|
+
while (pendingLessFiles.length > 0) {
|
|
69990
|
+
const batch = pendingLessFiles.splice(0);
|
|
69991
|
+
const newEntryPoints = batch.filter(
|
|
69992
|
+
(f) => !processedLessFiles.has(f)
|
|
69993
|
+
);
|
|
69994
|
+
if (newEntryPoints.length === 0) break;
|
|
69995
|
+
log_default.debug(
|
|
69996
|
+
`Building ${newEntryPoints.length} discovered less file(s):`,
|
|
69997
|
+
newEntryPoints
|
|
69998
|
+
);
|
|
69999
|
+
for (const lessSourcePath of newEntryPoints) {
|
|
70000
|
+
processedLessFiles.add(lessSourcePath);
|
|
70001
|
+
const entryNames = finalConfig.assetNames?.replace("[ext]", "") || "[name]-[hash]";
|
|
70002
|
+
const lessConfig = {
|
|
70003
|
+
...finalConfig,
|
|
70004
|
+
entryPoints: [lessSourcePath],
|
|
70005
|
+
entryNames
|
|
70006
|
+
};
|
|
70007
|
+
const lessResult = await esbuild.build(lessConfig);
|
|
70008
|
+
for (const file of lessResult.outputFiles) {
|
|
70009
|
+
const relativeFilePath = import_path8.default.relative(outdir, file.path);
|
|
70010
|
+
if (relativeFilePath.endsWith(".css")) {
|
|
70011
|
+
lessToOutputPath.set(lessSourcePath, relativeFilePath);
|
|
70012
|
+
await fileWriter.writeFile(file.path, file.contents, {
|
|
70013
|
+
encoding: "utf-8"
|
|
70014
|
+
});
|
|
70015
|
+
log_default.debug(
|
|
70016
|
+
`Built less file: ${import_path8.default.relative(indir, lessSourcePath)} -> ${relativeFilePath}`
|
|
70017
|
+
);
|
|
70018
|
+
}
|
|
70019
|
+
}
|
|
70020
|
+
}
|
|
70021
|
+
}
|
|
69880
70022
|
log_default.debug(
|
|
69881
|
-
`Rewriting pug references in ${pugHtmlOutputs.size} HTML file(s)`
|
|
70023
|
+
`Rewriting pug/less references in ${pugHtmlOutputs.size} HTML file(s)`
|
|
69882
70024
|
);
|
|
69883
70025
|
const htmlWriters = [];
|
|
69884
70026
|
for (const [_sourcePath, output] of pugHtmlOutputs.entries()) {
|
|
@@ -69890,6 +70032,13 @@ var esbuilder = {
|
|
|
69890
70032
|
pugToOutputPath
|
|
69891
70033
|
);
|
|
69892
70034
|
}
|
|
70035
|
+
if (output.lessReferences.length > 0) {
|
|
70036
|
+
html = rewriteLessReferencesInHtml(
|
|
70037
|
+
html,
|
|
70038
|
+
output.lessReferences,
|
|
70039
|
+
lessToOutputPath
|
|
70040
|
+
);
|
|
70041
|
+
}
|
|
69893
70042
|
const promise = fileWriter.writeFile(output.outputPath, html, {
|
|
69894
70043
|
encoding: "utf-8"
|
|
69895
70044
|
});
|
|
@@ -70020,11 +70169,11 @@ function getBuilder(builders2, ext, modifiers) {
|
|
|
70020
70169
|
}
|
|
70021
70170
|
|
|
70022
70171
|
// pnp:/builds/normed/bundle/packages/bundle/src/entrypoints.ts
|
|
70023
|
-
var
|
|
70172
|
+
var import_path12 = __toESM(require("path"));
|
|
70024
70173
|
|
|
70025
70174
|
// pnp:/builds/normed/bundle/.yarn/cache/filesystem-traverse-npm-3.0.0-2273ac54af-8725791ac7.zip/node_modules/filesystem-traverse/dist/esm/index.mjs
|
|
70026
|
-
var
|
|
70027
|
-
var
|
|
70175
|
+
var import_path9 = __toESM(require("path"), 1);
|
|
70176
|
+
var import_fs8 = __toESM(require("fs"), 1);
|
|
70028
70177
|
function makeAsync(func) {
|
|
70029
70178
|
return async (arg) => func(arg);
|
|
70030
70179
|
}
|
|
@@ -70055,16 +70204,16 @@ function makeInclude(include, exclude) {
|
|
|
70055
70204
|
};
|
|
70056
70205
|
}
|
|
70057
70206
|
async function search(match, context, directory, state = { complete: false }) {
|
|
70058
|
-
const { fs:
|
|
70207
|
+
const { fs: fs12, basedir, includeFile, includeDirectory } = context;
|
|
70059
70208
|
if (state.complete) {
|
|
70060
70209
|
return;
|
|
70061
70210
|
}
|
|
70062
|
-
const entries = await
|
|
70211
|
+
const entries = await fs12.promises.readdir(import_path9.default.join(basedir, directory), {
|
|
70063
70212
|
encoding: "utf8",
|
|
70064
70213
|
withFileTypes: true
|
|
70065
70214
|
});
|
|
70066
|
-
const files = entries.filter((entry) => entry.isFile() && includeFile(entry.name)).map((entry) =>
|
|
70067
|
-
const directories = entries.filter((entry) => entry.isDirectory() && includeDirectory(entry.name)).map((entry) =>
|
|
70215
|
+
const files = entries.filter((entry) => entry.isFile() && includeFile(entry.name)).map((entry) => import_path9.default.join(directory, entry.name));
|
|
70216
|
+
const directories = entries.filter((entry) => entry.isDirectory() && includeDirectory(entry.name)).map((entry) => import_path9.default.join(directory, entry.name));
|
|
70068
70217
|
const fileSearch = files.map(async (file) => {
|
|
70069
70218
|
if (!state.complete) {
|
|
70070
70219
|
const result = await match(file);
|
|
@@ -70079,15 +70228,15 @@ async function search(match, context, directory, state = { complete: false }) {
|
|
|
70079
70228
|
await Promise.all([...fileSearch, ...directorySearch]);
|
|
70080
70229
|
}
|
|
70081
70230
|
function optionsToContext(options2) {
|
|
70082
|
-
const basedir =
|
|
70231
|
+
const basedir = import_path9.default.isAbsolute(options2.directory || "") ? options2.directory || "" : import_path9.default.resolve(import_path9.default.join(process.cwd(), options2.directory || ""));
|
|
70083
70232
|
const includeFile = makeInclude(options2.include_file, options2.exclude_file);
|
|
70084
70233
|
const includeDirectory = makeInclude(
|
|
70085
70234
|
options2.include_dir,
|
|
70086
70235
|
options2.exclude_dir
|
|
70087
70236
|
);
|
|
70088
|
-
const
|
|
70237
|
+
const fs12 = options2.fs || import_fs8.default;
|
|
70089
70238
|
return {
|
|
70090
|
-
fs:
|
|
70239
|
+
fs: fs12,
|
|
70091
70240
|
basedir,
|
|
70092
70241
|
includeFile,
|
|
70093
70242
|
includeDirectory
|
|
@@ -70204,7 +70353,7 @@ function getOutExt(builder, infile) {
|
|
|
70204
70353
|
}
|
|
70205
70354
|
|
|
70206
70355
|
// pnp:/builds/normed/bundle/packages/bundle/src/File.ts
|
|
70207
|
-
var
|
|
70356
|
+
var import_path10 = __toESM(require("path"));
|
|
70208
70357
|
var File = class {
|
|
70209
70358
|
basedir;
|
|
70210
70359
|
relative;
|
|
@@ -70219,13 +70368,13 @@ var File = class {
|
|
|
70219
70368
|
*/
|
|
70220
70369
|
constructor(opts) {
|
|
70221
70370
|
this.basedir = opts.basedir;
|
|
70222
|
-
this.relative =
|
|
70371
|
+
this.relative = import_path10.default.relative(
|
|
70223
70372
|
this.basedir,
|
|
70224
|
-
|
|
70373
|
+
import_path10.default.resolve(this.basedir, opts.path)
|
|
70225
70374
|
);
|
|
70226
|
-
this.absolute =
|
|
70227
|
-
this.dirname =
|
|
70228
|
-
const conventional_basename =
|
|
70375
|
+
this.absolute = import_path10.default.join(this.basedir, this.relative);
|
|
70376
|
+
this.dirname = import_path10.default.dirname(this.relative);
|
|
70377
|
+
const conventional_basename = import_path10.default.basename(this.relative);
|
|
70229
70378
|
const parts = conventional_basename.split(".");
|
|
70230
70379
|
this.extension = parts.pop() ?? __throw__(new Error(`No extension found for file "${opts.path}"`));
|
|
70231
70380
|
const file_start = parts.shift() ?? __throw__(new Error(`No basename found for file "${opts.path}"`));
|
|
@@ -70245,7 +70394,7 @@ var File = class {
|
|
|
70245
70394
|
}
|
|
70246
70395
|
}
|
|
70247
70396
|
this.basename = [file_start, ...parts].join(".");
|
|
70248
|
-
this.bare =
|
|
70397
|
+
this.bare = import_path10.default.join(this.dirname, this.basename);
|
|
70249
70398
|
}
|
|
70250
70399
|
};
|
|
70251
70400
|
|
|
@@ -70433,8 +70582,8 @@ var SetMap = class _SetMap {
|
|
|
70433
70582
|
};
|
|
70434
70583
|
|
|
70435
70584
|
// pnp:/builds/normed/bundle/packages/bundle/src/EntryConfigInstance.ts
|
|
70436
|
-
var
|
|
70437
|
-
var
|
|
70585
|
+
var import_fs9 = __toESM(require("fs"));
|
|
70586
|
+
var import_path11 = __toESM(require("path"));
|
|
70438
70587
|
var namedEntryConfigs = /* @__PURE__ */ new Map();
|
|
70439
70588
|
var entryConfigEquality = new SetMap();
|
|
70440
70589
|
var EntryConfigInstance = class _EntryConfigInstance {
|
|
@@ -70616,24 +70765,24 @@ var EntryConfigInstance = class _EntryConfigInstance {
|
|
|
70616
70765
|
}
|
|
70617
70766
|
};
|
|
70618
70767
|
async function readEsbuild(filepath, relativeDirectory) {
|
|
70619
|
-
const aboslutePath =
|
|
70768
|
+
const aboslutePath = import_path11.default.resolve(
|
|
70620
70769
|
relativeDirectory ?? process.cwd(),
|
|
70621
70770
|
filepath
|
|
70622
70771
|
);
|
|
70623
|
-
const data = await
|
|
70772
|
+
const data = await import_fs9.default.promises.readFile(aboslutePath, "utf-8");
|
|
70624
70773
|
return JSON.parse(data);
|
|
70625
70774
|
}
|
|
70626
70775
|
async function readTsconfig(filepath, relativeDirectory) {
|
|
70627
|
-
const aboslutePath =
|
|
70776
|
+
const aboslutePath = import_path11.default.resolve(
|
|
70628
70777
|
relativeDirectory ?? process.cwd(),
|
|
70629
70778
|
filepath
|
|
70630
70779
|
);
|
|
70631
|
-
const data = await
|
|
70780
|
+
const data = await import_fs9.default.promises.readFile(aboslutePath, "utf-8");
|
|
70632
70781
|
return JSON.parse(data);
|
|
70633
70782
|
}
|
|
70634
70783
|
|
|
70635
70784
|
// pnp:/builds/normed/bundle/packages/bundle/src/entrypoints.ts
|
|
70636
|
-
var
|
|
70785
|
+
var import_fs10 = __toESM(require("fs"));
|
|
70637
70786
|
async function pathToEntrypoint(buildConfig, file, source) {
|
|
70638
70787
|
const infile = new File({
|
|
70639
70788
|
supportedModifiers: buildConfig.modifiers,
|
|
@@ -70641,14 +70790,14 @@ async function pathToEntrypoint(buildConfig, file, source) {
|
|
|
70641
70790
|
basedir: buildConfig.dir.in,
|
|
70642
70791
|
parseModifiers: true
|
|
70643
70792
|
});
|
|
70644
|
-
const stats = await
|
|
70793
|
+
const stats = await import_fs10.default.promises.stat(infile.absolute);
|
|
70645
70794
|
if (stats.isDirectory()) {
|
|
70646
70795
|
(await Promise.all(
|
|
70647
70796
|
await index_default({
|
|
70648
70797
|
directory: infile.relative,
|
|
70649
70798
|
process_file: (file2) => pathToEntrypoint(
|
|
70650
70799
|
buildConfig,
|
|
70651
|
-
|
|
70800
|
+
import_path12.default.join(infile.relative, file2),
|
|
70652
70801
|
source
|
|
70653
70802
|
)
|
|
70654
70803
|
})
|