@hitachivantara/app-shell-vite-plugin 1.6.4 → 1.6.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.
@@ -5,7 +5,7 @@ describe("test vite-generate-base plugin", () => {
5
5
  [false, { name: "dummyName" }, "dummyName"],
6
6
  [true, {}, "%%APPSHELL_TITLE%%"]
7
7
  ])("At mode %b, %j, app title matches %s", (value, config, expected) => {
8
- expect(getAppTitle(value, config)).toMatchObject(expected);
8
+ expect(getAppTitle(value, config)).toBe(expected);
9
9
  });
10
10
  });
11
11
  });
@@ -1 +1 @@
1
- {"version":3,"file":"vite-generate-base-plugin.test.js","sourceRoot":"","sources":["../../src/tests/vite-generate-base-plugin.test.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE3D,QAAQ,CAAC,gCAAgC,EAAE,GAAG,EAAE;IAC9C,QAAQ,CAAC,2BAA2B,EAAE,GAAG,EAAE;QACzC,IAAI,CAAC,IAAI,CAAC;YACR,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,WAAW,CAAC;YAC3C,CAAC,IAAI,EAAE,EAAE,EAAE,oBAAoB,CAAC;SACjC,CAAC,CACA,uCAAuC,EACvC,CAAC,KAAc,EAAE,MAAc,EAAE,QAAgB,EAAE,EAAE;YACnD,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,MAA0B,CAAC,CAAC,CAAC,aAAa,CAClE,QAAQ,CACT,CAAC;QACJ,CAAC,CACF,CAAC;IACJ,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","sourcesContent":["import { HvAppShellConfig } from \"@hitachivantara/app-shell-shared\";\nimport { getAppTitle } from \"../vite-generate-base-plugin\";\n\ndescribe(\"test vite-generate-base plugin\", () => {\n describe(\"test `getAppTitle` method\", () => {\n test.each([\n [false, { name: \"dummyName\" }, \"dummyName\"],\n [true, {}, \"%%APPSHELL_TITLE%%\"]\n ])(\n \"At mode %b, %j, app title matches %s\",\n (value: boolean, config: object, expected: string) => {\n expect(getAppTitle(value, config as HvAppShellConfig)).toMatchObject(\n expected\n );\n }\n );\n });\n});\n"]}
1
+ {"version":3,"file":"vite-generate-base-plugin.test.js","sourceRoot":"","sources":["../../src/tests/vite-generate-base-plugin.test.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE3D,QAAQ,CAAC,gCAAgC,EAAE,GAAG,EAAE;IAC9C,QAAQ,CAAC,2BAA2B,EAAE,GAAG,EAAE;QACzC,IAAI,CAAC,IAAI,CAAsC;YAC7C,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,WAAW,CAAC;YAC3C,CAAC,IAAI,EAAE,EAAE,EAAE,oBAAoB,CAAC;SACjC,CAAC,CAAC,uCAAuC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,EAAE;YACtE,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACpD,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","sourcesContent":["import { HvAppShellConfig } from \"@hitachivantara/app-shell-shared\";\nimport { getAppTitle } from \"../vite-generate-base-plugin\";\n\ndescribe(\"test vite-generate-base plugin\", () => {\n describe(\"test `getAppTitle` method\", () => {\n test.each<[boolean, HvAppShellConfig, string]>([\n [false, { name: \"dummyName\" }, \"dummyName\"],\n [true, {}, \"%%APPSHELL_TITLE%%\"]\n ])(\"At mode %b, %j, app title matches %s\", (value, config, expected) => {\n expect(getAppTitle(value, config)).toBe(expected);\n });\n });\n});\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/app-shell-vite-plugin",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "AppShell Vite Plugin",
5
5
  "author": "Hitachi Vantara - Boba Fett Team",
6
6
  "license": "Apache-2.0",
@@ -39,7 +39,7 @@
39
39
  "@emotion/cache": "^11.11.0",
40
40
  "@emotion/react": "^11.11.1",
41
41
  "@hitachivantara/app-shell-shared": "1.4.2",
42
- "@hitachivantara/app-shell-ui": "1.6.3",
42
+ "@hitachivantara/app-shell-ui": "1.6.4",
43
43
  "@hitachivantara/uikit-react-icons": "^5.11.0",
44
44
  "@hitachivantara/uikit-react-shared": "^5.3.3",
45
45
  "@rollup/plugin-commonjs": "^25.0.7",
@@ -64,5 +64,5 @@
64
64
  "peerDependencies": {
65
65
  "vite": "^4.1.4 || ^5.0.4"
66
66
  },
67
- "gitHead": "863f86de4fc34efe9b5f129fe08f676af51c9e1b"
67
+ "gitHead": "a044e2d19f6fac00605673bf9c97648388786286"
68
68
  }