cloudcommerce 0.0.25 → 0.0.26

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.26](https://github.com/ecomplus/cloud-commerce/compare/v0.0.25...v0.0.26) (2022-07-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **firebase:** Use Cloud Functions v2, update initial functions (ssr, z*) and deploy region ([6f73696](https://github.com/ecomplus/cloud-commerce/commit/6f736961cbb76b6576d72dd27bcf5f8245f53ead))
11
+
5
12
  ### [0.0.25](https://github.com/ecomplus/cloud-commerce/compare/v0.0.24...v0.0.25) (2022-07-13)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
6
6
  "main": "packages/api/lib/index.js",
7
7
  "author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
@@ -28,7 +28,7 @@
28
28
  "eslint-plugin-import": "^2.26.0",
29
29
  "eslint-plugin-vue": "^9.2.0",
30
30
  "husky": "^8.0.1",
31
- "node-fetch": "^3.2.6",
31
+ "node-fetch": "^3.2.8",
32
32
  "standard-version": "^9.5.0",
33
33
  "turbo": "^1.3.1",
34
34
  "typescript": "^4.7.4",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/api",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "E-Com Plus Cloud Commerce APIs client/adapter",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/app-discounts",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "E-Com Plus Cloud Commerce app for complex discount rules",
6
6
  "main": "functions/dist/index.js",
7
7
  "repository": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/cli",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "E-Com Plus Cloud Commerce CLI tools",
6
6
  "bin": {
7
7
  "cloudcommerce": "./bin/run.mjs"
@@ -1,21 +1,27 @@
1
1
  import 'source-map-support/register.js';
2
- import * as functions from 'firebase-functions';
2
+ import { logger } from 'firebase-functions';
3
+ // eslint-disable-next-line import/no-unresolved
4
+ import { onRequest } from 'firebase-functions/v2/https';
3
5
  import config from './config.js';
4
6
 
5
- export const hello = functions.https.onRequest((request, response) => {
6
- functions.logger.info('Hello logs!', {
7
- structuredData: true,
8
- });
9
- response.send(config.get().hello);
10
- });
7
+ const options = {
8
+ region: process.env.DEPLOY_REGION || 'us-east1',
9
+ };
11
10
 
12
- export const info = functions.https.onRequest((request, response) => {
11
+ export const z = onRequest(options, (request, response) => {
12
+ if (request.url === '/hello') {
13
+ logger.info('Hello logs!', {
14
+ structuredData: true,
15
+ });
16
+ response.send(config.get().hello);
17
+ return;
18
+ }
13
19
  response.send({
14
20
  config: config.get(),
15
21
  });
16
22
  });
17
23
 
18
- export const ssr = functions.https.onRequest((request, response) => {
24
+ export const ssr = onRequest(options, (request, response) => {
19
25
  response.send('<h1>Hello SSR!</h1>');
20
26
  });
21
27
  // # sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gCAAgC,CAAC;AACxC,OAAO,KAAK,SAAS,MAAM,oBAAoB,CAAC;AAChD,OAAO,MAAM,MAAM,UAAU,CAAC;AAE9B,MAAM,CAAC,MAAM,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IACnE,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE;QACnC,cAAc,EAAE,IAAI;KACrB,CAAC,CAAC;IACH,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC;AACpC,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,IAAI,GAAG,SAAS,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IAClE,QAAQ,CAAC,IAAI,CAAC;QACZ,MAAM,EAAE,MAAM,CAAC,GAAG,EAAE;KACrB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,GAAG,GAAG,SAAS,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IACjE,QAAQ,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gCAAgC,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC5C,gDAAgD;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,MAAM,MAAM,UAAU,CAAC;AAE9B,MAAM,OAAO,GAAG;IACd,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,UAAU;CAChD,CAAC;AAEF,MAAM,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IACxD,IAAI,OAAO,CAAC,GAAG,KAAK,QAAQ,EAAE;QAC5B,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE;YACzB,cAAc,EAAE,IAAI;SACrB,CAAC,CAAC;QACH,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC;QAClC,OAAO;KACR;IACD,QAAQ,CAAC,IAAI,CAAC;QACZ,MAAM,EAAE,MAAM,CAAC,GAAG,EAAE;KACrB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,GAAG,GAAG,SAAS,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;IAC1D,QAAQ,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;AACvC,CAAC,CAAC,CAAC"}
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@cloudcommerce/firebase",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "E-Com Plus Cloud Commerce on Firebase",
6
6
  "main": "lib/index.js",
7
+ "exports": {
8
+ ".": "./lib/index.js",
9
+ "./config": "./config.js"
10
+ },
7
11
  "repository": {
8
12
  "type": "git",
9
13
  "url": "git+https://github.com/ecomplus/cloud-commerce.git",
@@ -1,20 +1,26 @@
1
1
  import 'source-map-support/register.js';
2
- import * as functions from 'firebase-functions';
2
+ import { logger } from 'firebase-functions';
3
+ // eslint-disable-next-line import/no-unresolved
4
+ import { onRequest } from 'firebase-functions/v2/https';
3
5
  import config from './config';
4
6
 
5
- export const hello = functions.https.onRequest((request, response) => {
6
- functions.logger.info('Hello logs!', {
7
- structuredData: true,
8
- });
9
- response.send(config.get().hello);
10
- });
7
+ const options = {
8
+ region: process.env.DEPLOY_REGION || 'us-east1',
9
+ };
11
10
 
12
- export const info = functions.https.onRequest((request, response) => {
11
+ export const z = onRequest(options, (request, response) => {
12
+ if (request.url === '/hello') {
13
+ logger.info('Hello logs!', {
14
+ structuredData: true,
15
+ });
16
+ response.send(config.get().hello);
17
+ return;
18
+ }
13
19
  response.send({
14
20
  config: config.get(),
15
21
  });
16
22
  });
17
23
 
18
- export const ssr = functions.https.onRequest((request, response) => {
24
+ export const ssr = onRequest(options, (request, response) => {
19
25
  response.send('<h1>Hello SSR!</h1>');
20
26
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/storefront",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.26",
5
5
  "description": "E-Com Plus Cloud Commerce storefront with Astro",
6
6
  "main": "src/index.js",
7
7
  "repository": {
package/pnpm-lock.yaml CHANGED
@@ -16,7 +16,7 @@ importers:
16
16
  eslint-plugin-import: ^2.26.0
17
17
  eslint-plugin-vue: ^9.2.0
18
18
  husky: ^8.0.1
19
- node-fetch: ^3.2.6
19
+ node-fetch: ^3.2.8
20
20
  standard-version: ^9.5.0
21
21
  turbo: ^1.3.1
22
22
  typescript: ^4.7.4
@@ -36,7 +36,7 @@ importers:
36
36
  eslint-plugin-import: 2.26.0_rywvbqnelbznwddhxv2glfjuay
37
37
  eslint-plugin-vue: 9.2.0_eslint@8.19.0
38
38
  husky: 8.0.1
39
- node-fetch: 3.2.6
39
+ node-fetch: 3.2.8
40
40
  standard-version: 9.5.0
41
41
  turbo: 1.3.1
42
42
  typescript: 4.7.4
@@ -92,13 +92,13 @@ importers:
92
92
 
93
93
  store:
94
94
  specifiers:
95
- '@cloudcommerce/cli': ^0.0.24
95
+ '@cloudcommerce/cli': ^0.0.25
96
96
  dependencies:
97
97
  '@cloudcommerce/cli': link:../packages/cli
98
98
 
99
99
  store/functions:
100
100
  specifiers:
101
- '@cloudcommerce/firebase': ^0.0.24
101
+ '@cloudcommerce/firebase': ^0.0.25
102
102
  dependencies:
103
103
  '@cloudcommerce/firebase': link:../../packages/firebase
104
104
 
@@ -2424,6 +2424,7 @@ packages:
2424
2424
  cpu: [x64]
2425
2425
  os: [android]
2426
2426
  requiresBuild: true
2427
+ dev: false
2427
2428
  optional: true
2428
2429
 
2429
2430
  /esbuild-android-64/0.14.49:
@@ -2432,7 +2433,6 @@ packages:
2432
2433
  cpu: [x64]
2433
2434
  os: [android]
2434
2435
  requiresBuild: true
2435
- dev: true
2436
2436
  optional: true
2437
2437
 
2438
2438
  /esbuild-android-arm64/0.14.48:
@@ -2441,6 +2441,7 @@ packages:
2441
2441
  cpu: [arm64]
2442
2442
  os: [android]
2443
2443
  requiresBuild: true
2444
+ dev: false
2444
2445
  optional: true
2445
2446
 
2446
2447
  /esbuild-android-arm64/0.14.49:
@@ -2449,7 +2450,6 @@ packages:
2449
2450
  cpu: [arm64]
2450
2451
  os: [android]
2451
2452
  requiresBuild: true
2452
- dev: true
2453
2453
  optional: true
2454
2454
 
2455
2455
  /esbuild-darwin-64/0.14.48:
@@ -2458,6 +2458,7 @@ packages:
2458
2458
  cpu: [x64]
2459
2459
  os: [darwin]
2460
2460
  requiresBuild: true
2461
+ dev: false
2461
2462
  optional: true
2462
2463
 
2463
2464
  /esbuild-darwin-64/0.14.49:
@@ -2466,7 +2467,6 @@ packages:
2466
2467
  cpu: [x64]
2467
2468
  os: [darwin]
2468
2469
  requiresBuild: true
2469
- dev: true
2470
2470
  optional: true
2471
2471
 
2472
2472
  /esbuild-darwin-arm64/0.14.48:
@@ -2475,6 +2475,7 @@ packages:
2475
2475
  cpu: [arm64]
2476
2476
  os: [darwin]
2477
2477
  requiresBuild: true
2478
+ dev: false
2478
2479
  optional: true
2479
2480
 
2480
2481
  /esbuild-darwin-arm64/0.14.49:
@@ -2483,7 +2484,6 @@ packages:
2483
2484
  cpu: [arm64]
2484
2485
  os: [darwin]
2485
2486
  requiresBuild: true
2486
- dev: true
2487
2487
  optional: true
2488
2488
 
2489
2489
  /esbuild-freebsd-64/0.14.48:
@@ -2492,6 +2492,7 @@ packages:
2492
2492
  cpu: [x64]
2493
2493
  os: [freebsd]
2494
2494
  requiresBuild: true
2495
+ dev: false
2495
2496
  optional: true
2496
2497
 
2497
2498
  /esbuild-freebsd-64/0.14.49:
@@ -2500,7 +2501,6 @@ packages:
2500
2501
  cpu: [x64]
2501
2502
  os: [freebsd]
2502
2503
  requiresBuild: true
2503
- dev: true
2504
2504
  optional: true
2505
2505
 
2506
2506
  /esbuild-freebsd-arm64/0.14.48:
@@ -2509,6 +2509,7 @@ packages:
2509
2509
  cpu: [arm64]
2510
2510
  os: [freebsd]
2511
2511
  requiresBuild: true
2512
+ dev: false
2512
2513
  optional: true
2513
2514
 
2514
2515
  /esbuild-freebsd-arm64/0.14.49:
@@ -2517,7 +2518,6 @@ packages:
2517
2518
  cpu: [arm64]
2518
2519
  os: [freebsd]
2519
2520
  requiresBuild: true
2520
- dev: true
2521
2521
  optional: true
2522
2522
 
2523
2523
  /esbuild-linux-32/0.14.48:
@@ -2526,6 +2526,7 @@ packages:
2526
2526
  cpu: [ia32]
2527
2527
  os: [linux]
2528
2528
  requiresBuild: true
2529
+ dev: false
2529
2530
  optional: true
2530
2531
 
2531
2532
  /esbuild-linux-32/0.14.49:
@@ -2534,7 +2535,6 @@ packages:
2534
2535
  cpu: [ia32]
2535
2536
  os: [linux]
2536
2537
  requiresBuild: true
2537
- dev: true
2538
2538
  optional: true
2539
2539
 
2540
2540
  /esbuild-linux-64/0.14.48:
@@ -2543,6 +2543,7 @@ packages:
2543
2543
  cpu: [x64]
2544
2544
  os: [linux]
2545
2545
  requiresBuild: true
2546
+ dev: false
2546
2547
  optional: true
2547
2548
 
2548
2549
  /esbuild-linux-64/0.14.49:
@@ -2551,7 +2552,6 @@ packages:
2551
2552
  cpu: [x64]
2552
2553
  os: [linux]
2553
2554
  requiresBuild: true
2554
- dev: true
2555
2555
  optional: true
2556
2556
 
2557
2557
  /esbuild-linux-arm/0.14.48:
@@ -2560,6 +2560,7 @@ packages:
2560
2560
  cpu: [arm]
2561
2561
  os: [linux]
2562
2562
  requiresBuild: true
2563
+ dev: false
2563
2564
  optional: true
2564
2565
 
2565
2566
  /esbuild-linux-arm/0.14.49:
@@ -2568,7 +2569,6 @@ packages:
2568
2569
  cpu: [arm]
2569
2570
  os: [linux]
2570
2571
  requiresBuild: true
2571
- dev: true
2572
2572
  optional: true
2573
2573
 
2574
2574
  /esbuild-linux-arm64/0.14.48:
@@ -2577,6 +2577,7 @@ packages:
2577
2577
  cpu: [arm64]
2578
2578
  os: [linux]
2579
2579
  requiresBuild: true
2580
+ dev: false
2580
2581
  optional: true
2581
2582
 
2582
2583
  /esbuild-linux-arm64/0.14.49:
@@ -2585,7 +2586,6 @@ packages:
2585
2586
  cpu: [arm64]
2586
2587
  os: [linux]
2587
2588
  requiresBuild: true
2588
- dev: true
2589
2589
  optional: true
2590
2590
 
2591
2591
  /esbuild-linux-mips64le/0.14.48:
@@ -2594,6 +2594,7 @@ packages:
2594
2594
  cpu: [mips64el]
2595
2595
  os: [linux]
2596
2596
  requiresBuild: true
2597
+ dev: false
2597
2598
  optional: true
2598
2599
 
2599
2600
  /esbuild-linux-mips64le/0.14.49:
@@ -2602,7 +2603,6 @@ packages:
2602
2603
  cpu: [mips64el]
2603
2604
  os: [linux]
2604
2605
  requiresBuild: true
2605
- dev: true
2606
2606
  optional: true
2607
2607
 
2608
2608
  /esbuild-linux-ppc64le/0.14.48:
@@ -2611,6 +2611,7 @@ packages:
2611
2611
  cpu: [ppc64]
2612
2612
  os: [linux]
2613
2613
  requiresBuild: true
2614
+ dev: false
2614
2615
  optional: true
2615
2616
 
2616
2617
  /esbuild-linux-ppc64le/0.14.49:
@@ -2619,7 +2620,6 @@ packages:
2619
2620
  cpu: [ppc64]
2620
2621
  os: [linux]
2621
2622
  requiresBuild: true
2622
- dev: true
2623
2623
  optional: true
2624
2624
 
2625
2625
  /esbuild-linux-riscv64/0.14.48:
@@ -2628,6 +2628,7 @@ packages:
2628
2628
  cpu: [riscv64]
2629
2629
  os: [linux]
2630
2630
  requiresBuild: true
2631
+ dev: false
2631
2632
  optional: true
2632
2633
 
2633
2634
  /esbuild-linux-riscv64/0.14.49:
@@ -2636,7 +2637,6 @@ packages:
2636
2637
  cpu: [riscv64]
2637
2638
  os: [linux]
2638
2639
  requiresBuild: true
2639
- dev: true
2640
2640
  optional: true
2641
2641
 
2642
2642
  /esbuild-linux-s390x/0.14.48:
@@ -2645,6 +2645,7 @@ packages:
2645
2645
  cpu: [s390x]
2646
2646
  os: [linux]
2647
2647
  requiresBuild: true
2648
+ dev: false
2648
2649
  optional: true
2649
2650
 
2650
2651
  /esbuild-linux-s390x/0.14.49:
@@ -2653,7 +2654,6 @@ packages:
2653
2654
  cpu: [s390x]
2654
2655
  os: [linux]
2655
2656
  requiresBuild: true
2656
- dev: true
2657
2657
  optional: true
2658
2658
 
2659
2659
  /esbuild-netbsd-64/0.14.48:
@@ -2662,6 +2662,7 @@ packages:
2662
2662
  cpu: [x64]
2663
2663
  os: [netbsd]
2664
2664
  requiresBuild: true
2665
+ dev: false
2665
2666
  optional: true
2666
2667
 
2667
2668
  /esbuild-netbsd-64/0.14.49:
@@ -2670,7 +2671,6 @@ packages:
2670
2671
  cpu: [x64]
2671
2672
  os: [netbsd]
2672
2673
  requiresBuild: true
2673
- dev: true
2674
2674
  optional: true
2675
2675
 
2676
2676
  /esbuild-openbsd-64/0.14.48:
@@ -2679,6 +2679,7 @@ packages:
2679
2679
  cpu: [x64]
2680
2680
  os: [openbsd]
2681
2681
  requiresBuild: true
2682
+ dev: false
2682
2683
  optional: true
2683
2684
 
2684
2685
  /esbuild-openbsd-64/0.14.49:
@@ -2687,7 +2688,6 @@ packages:
2687
2688
  cpu: [x64]
2688
2689
  os: [openbsd]
2689
2690
  requiresBuild: true
2690
- dev: true
2691
2691
  optional: true
2692
2692
 
2693
2693
  /esbuild-sunos-64/0.14.48:
@@ -2696,6 +2696,7 @@ packages:
2696
2696
  cpu: [x64]
2697
2697
  os: [sunos]
2698
2698
  requiresBuild: true
2699
+ dev: false
2699
2700
  optional: true
2700
2701
 
2701
2702
  /esbuild-sunos-64/0.14.49:
@@ -2704,7 +2705,6 @@ packages:
2704
2705
  cpu: [x64]
2705
2706
  os: [sunos]
2706
2707
  requiresBuild: true
2707
- dev: true
2708
2708
  optional: true
2709
2709
 
2710
2710
  /esbuild-windows-32/0.14.48:
@@ -2713,6 +2713,7 @@ packages:
2713
2713
  cpu: [ia32]
2714
2714
  os: [win32]
2715
2715
  requiresBuild: true
2716
+ dev: false
2716
2717
  optional: true
2717
2718
 
2718
2719
  /esbuild-windows-32/0.14.49:
@@ -2721,7 +2722,6 @@ packages:
2721
2722
  cpu: [ia32]
2722
2723
  os: [win32]
2723
2724
  requiresBuild: true
2724
- dev: true
2725
2725
  optional: true
2726
2726
 
2727
2727
  /esbuild-windows-64/0.14.48:
@@ -2730,6 +2730,7 @@ packages:
2730
2730
  cpu: [x64]
2731
2731
  os: [win32]
2732
2732
  requiresBuild: true
2733
+ dev: false
2733
2734
  optional: true
2734
2735
 
2735
2736
  /esbuild-windows-64/0.14.49:
@@ -2738,7 +2739,6 @@ packages:
2738
2739
  cpu: [x64]
2739
2740
  os: [win32]
2740
2741
  requiresBuild: true
2741
- dev: true
2742
2742
  optional: true
2743
2743
 
2744
2744
  /esbuild-windows-arm64/0.14.48:
@@ -2747,6 +2747,7 @@ packages:
2747
2747
  cpu: [arm64]
2748
2748
  os: [win32]
2749
2749
  requiresBuild: true
2750
+ dev: false
2750
2751
  optional: true
2751
2752
 
2752
2753
  /esbuild-windows-arm64/0.14.49:
@@ -2755,7 +2756,6 @@ packages:
2755
2756
  cpu: [arm64]
2756
2757
  os: [win32]
2757
2758
  requiresBuild: true
2758
- dev: true
2759
2759
  optional: true
2760
2760
 
2761
2761
  /esbuild/0.14.48:
@@ -2784,6 +2784,7 @@ packages:
2784
2784
  esbuild-windows-32: 0.14.48
2785
2785
  esbuild-windows-64: 0.14.48
2786
2786
  esbuild-windows-arm64: 0.14.48
2787
+ dev: false
2787
2788
 
2788
2789
  /esbuild/0.14.49:
2789
2790
  resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==}
@@ -2811,7 +2812,6 @@ packages:
2811
2812
  esbuild-windows-32: 0.14.49
2812
2813
  esbuild-windows-64: 0.14.49
2813
2814
  esbuild-windows-arm64: 0.14.49
2814
- dev: true
2815
2815
 
2816
2816
  /escalade/3.1.1:
2817
2817
  resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -4466,8 +4466,8 @@ packages:
4466
4466
  strip-bom: 3.0.0
4467
4467
  dev: false
4468
4468
 
4469
- /local-pkg/0.4.1:
4470
- resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==}
4469
+ /local-pkg/0.4.2:
4470
+ resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==}
4471
4471
  engines: {node: '>=14'}
4472
4472
  dev: true
4473
4473
 
@@ -5253,6 +5253,15 @@ packages:
5253
5253
  data-uri-to-buffer: 4.0.0
5254
5254
  fetch-blob: 3.2.0
5255
5255
  formdata-polyfill: 4.0.10
5256
+ dev: false
5257
+
5258
+ /node-fetch/3.2.8:
5259
+ resolution: {integrity: sha512-KtpD1YhGszhntMpBDyp5lyagk8KIMopC1LEb7cQUAh7zcosaX5uK8HnbNb2i3NTQK3sIawCItS0uFC3QzcLHdg==}
5260
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
5261
+ dependencies:
5262
+ data-uri-to-buffer: 4.0.0
5263
+ fetch-blob: 3.2.0
5264
+ formdata-polyfill: 4.0.10
5256
5265
 
5257
5266
  /node-forge/1.3.1:
5258
5267
  resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
@@ -7094,7 +7103,7 @@ packages:
7094
7103
  stylus:
7095
7104
  optional: true
7096
7105
  dependencies:
7097
- esbuild: 0.14.48
7106
+ esbuild: 0.14.49
7098
7107
  postcss: 8.4.14
7099
7108
  resolve: 1.22.1
7100
7109
  rollup: 2.76.0
@@ -7128,7 +7137,7 @@ packages:
7128
7137
  '@types/node': 18.0.3
7129
7138
  chai: 4.3.6
7130
7139
  debug: 4.3.4
7131
- local-pkg: 0.4.1
7140
+ local-pkg: 0.4.2
7132
7141
  tinypool: 0.2.2
7133
7142
  tinyspy: 0.3.3
7134
7143
  vite: 2.9.14
@@ -7447,7 +7456,7 @@ packages:
7447
7456
  fs-extra: 10.1.0
7448
7457
  globby: 13.1.2
7449
7458
  minimist: 1.2.6
7450
- node-fetch: 3.2.6
7459
+ node-fetch: 3.2.8
7451
7460
  ps-tree: 1.2.0
7452
7461
  which: 2.0.2
7453
7462
  yaml: 2.1.1