@arcgis/lumina-compiler 5.0.0-next.56 → 5.0.0-next.57

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.
@@ -1,4 +1,4 @@
1
- import { GlobalSetupContext } from 'vitest/dist/node.js';
1
+ import { TestProject } from 'vitest/node';
2
2
  import { ConnectOptions } from 'puppeteer';
3
3
  declare module "vitest" {
4
4
  interface ProvidedContext {
@@ -60,7 +60,7 @@ declare module "vitest" {
60
60
  * to provide Puppeteer integration only temporary to ease the Stencil
61
61
  * migration, so optimizing it too much is not a goal.
62
62
  */
63
- export declare function setup(context: GlobalSetupContext): Promise<() => Promise<void>>;
63
+ export declare function setup(context: TestProject): Promise<() => Promise<void>>;
64
64
  export type PuppeteerViteGlobals = {
65
65
  /**
66
66
  * Helps lumina-compiler dev server know that is it running for Puppeteer
@@ -1022,14 +1022,14 @@ const Q = (s, e, t) => {
1022
1022
  message: () => `expected to ${t ? "not " : ""}have css class "${e}"`,
1023
1023
  pass: t
1024
1024
  };
1025
- }, F = (s, e) => {
1025
+ }, F = ((s, e) => {
1026
1026
  f(s, "toHaveClasses");
1027
1027
  const t = e.every((n) => s.classList.contains(n));
1028
1028
  return {
1029
1029
  message: () => `expected to ${t ? "not " : ""}have css classes "${e.join(" ")}", but className is "${s.className}"`,
1030
1030
  pass: t
1031
1031
  };
1032
- }, te = (s, e) => {
1032
+ }), te = (s, e) => {
1033
1033
  f(s, "toMatchClasses");
1034
1034
  let { pass: t } = F(s, e);
1035
1035
  return t && (t = e.length === s.classList.length), {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/lumina-compiler",
3
- "version": "5.0.0-next.56",
3
+ "version": "5.0.0-next.57",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -18,11 +18,11 @@
18
18
  ],
19
19
  "license": "SEE LICENSE IN LICENSE.md",
20
20
  "dependencies": {
21
- "@arcgis/api-extractor": "5.0.0-next.56",
22
- "@arcgis/components-build-utils": "5.0.0-next.56",
23
- "@arcgis/toolkit": "~5.0.0-next.56",
21
+ "@arcgis/api-extractor": "5.0.0-next.57",
22
+ "@arcgis/components-build-utils": "5.0.0-next.57",
23
+ "@arcgis/toolkit": "~5.0.0-next.57",
24
24
  "chalk": "^5.4.1",
25
- "esbuild": "^0.25.5",
25
+ "esbuild": "^0.25.12",
26
26
  "glob": "^11.0.3",
27
27
  "js-beautify": "^1.15.4",
28
28
  "mime-types": "^3.0.1",
@@ -30,11 +30,11 @@
30
30
  "vite-plugin-dts": "^4.5.4"
31
31
  },
32
32
  "peerDependencies": {
33
- "@arcgis/lumina": "~5.0.0-next.56",
33
+ "@arcgis/lumina": "~5.0.0-next.57",
34
34
  "lit": "^3.3.0",
35
- "typescript": "~5.8.3",
36
- "vite": "^7.0.0",
37
- "vitest": "^3.2.4"
35
+ "typescript": "~5.9.3",
36
+ "vite": "^7.2.2",
37
+ "vitest": "^4.0.8"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "vitest": {
@@ -1,8 +0,0 @@
1
- export type VitestBrowserModeProvider = "playwright" | "preview" | "webdriverio" | (string & {}) | undefined;
2
- export type VitestPartialConfig = {
3
- globalSetup?: string[] | string;
4
- runner?: string;
5
- include?: string[];
6
- environment?: "edge-runtime" | "happy-dom" | "jsdom" | "node" | (Record<never, never> & string);
7
- forceRerunTriggers?: string[];
8
- };