@hitachivantara/app-shell-vite-plugin 0.8.0 → 0.8.2
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/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
export { default as HvAppShellVitePlugin } from "./vite-plugin.js";
|
|
2
2
|
export * from "./vite-plugin.js";
|
|
3
|
+
declare global {
|
|
4
|
+
/**
|
|
5
|
+
* Returns the base path to the main app (`@self`).
|
|
6
|
+
* @see https://github.com/lumada-design/hv-app-shell/blob/main/docs/config-file.md#apps
|
|
7
|
+
* @see https://github.com/lumada-design/hv-app-shell/blob/main/client/packages/app-shell-vite-plugin/README.md#app_base_path-variable
|
|
8
|
+
*/
|
|
9
|
+
const APP_BASE_PATH: string;
|
|
10
|
+
}
|
|
3
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACnE,cAAc,kBAAkB,CAAC;AAEjC,OAAO,CAAC,MAAM,CAAC;IACb;;;;OAIG;IACH,MAAM,aAAa,EAAE,MAAM,CAAC;CAC7B"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACnE,cAAc,kBAAkB,CAAC","sourcesContent":["export { default as HvAppShellVitePlugin } from \"./vite-plugin.js\";\nexport * from \"./vite-plugin.js\";\n\ndeclare global {\n /**\n * Returns the base path to the main app (`@self`).\n * @see https://github.com/lumada-design/hv-app-shell/blob/main/docs/config-file.md#apps\n * @see https://github.com/lumada-design/hv-app-shell/blob/main/client/packages/app-shell-vite-plugin/README.md#app_base_path-variable\n */\n const APP_BASE_PATH: string;\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/app-shell-vite-plugin",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "AppShell Vite Plugin",
|
|
5
5
|
"author": "Hitachi Vantara - Boba Fett Team",
|
|
6
6
|
"type": "module",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"lint:prettier": "npx prettier --write \"src/**/*.{html,css,js,jsx,ts,tsx}\""
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@hitachivantara/app-shell-shared": "0.7.
|
|
35
|
+
"@hitachivantara/app-shell-shared": "0.7.3",
|
|
36
36
|
"@rollup/plugin-commonjs": "^24.0.0",
|
|
37
37
|
"@rollup/plugin-json": "^6.0.0",
|
|
38
38
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"@types/react-dom": "^18.0.11",
|
|
53
53
|
"tsc-watch": "^6.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "e7d024fb14526a5ac43320a0860a19a9c0887519"
|
|
56
56
|
}
|