@hitachivantara/app-shell-ui 2.3.0 → 2.3.1

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.
Files changed (2) hide show
  1. package/package.json +11 -36
  2. package/src/index.ts +0 -3
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@hitachivantara/app-shell-ui",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "Hitachi Vantara UI Kit Team",
7
7
  "description": "AppShell Component",
8
8
  "homepage": "https://github.com/pentaho/hv-uikit-react",
9
- "main": "src/index.ts",
10
9
  "sideEffects": false,
11
10
  "license": "Apache-2.0",
12
11
  "repository": {
@@ -15,19 +14,12 @@
15
14
  "directory": "packages/app-shell-ui"
16
15
  },
17
16
  "bugs": "https://github.com/pentaho/hv-uikit-react/issues",
18
- "scripts": {
19
- "build": "npm run clean && vite build",
20
- "test": "vitest",
21
- "test:ui": "vitest --ui",
22
- "clean": "npx rimraf dist package",
23
- "prepublishOnly": "npm run build && npx clean-publish"
24
- },
25
17
  "dependencies": {
26
18
  "@emotion/css": "^11.10.5",
27
19
  "@emotion/react": "^11.10.5",
28
20
  "@emotion/styled": "^11.10.5",
29
21
  "@hitachivantara/app-shell-events": "^2.0.4",
30
- "@hitachivantara/app-shell-i18next": "^0.2.0",
22
+ "@hitachivantara/app-shell-i18next": "^0.2.1",
31
23
  "@hitachivantara/app-shell-navigation": "^2.1.11",
32
24
  "@hitachivantara/app-shell-services": "^2.0.3",
33
25
  "@hitachivantara/app-shell-shared": "^2.3.0",
@@ -50,35 +42,18 @@
50
42
  "dist"
51
43
  ],
52
44
  "exports": {
53
- ".": "./src/index.ts",
45
+ ".": {
46
+ "types": "./dist/index.d.ts",
47
+ "default": "./dist/index.js"
48
+ },
54
49
  "./package.json": "./package.json",
55
- "./locales/*": "./src/locales/*"
50
+ "./locales/*": "./dist/locales/*"
56
51
  },
57
52
  "publishConfig": {
58
53
  "access": "public",
59
- "directory": "package",
60
- "module": "dist/index.js",
61
- "types": "./dist/index.d.ts",
62
- "exports": {
63
- ".": {
64
- "types": "./dist/index.d.ts",
65
- "default": "./dist/index.js"
66
- },
67
- "./package.json": "./package.json",
68
- "./locales/*": "./dist/locales/*"
69
- }
70
- },
71
- "clean-publish": {
72
- "withoutPublish": true,
73
- "tempDir": "package",
74
- "fields": [
75
- "main"
76
- ],
77
- "files": [
78
- "tsconfig.json"
79
- ]
54
+ "directory": "package"
80
55
  },
81
- "devDependencies": {
82
- "vite-plugin-static-copy": "^3.1.2"
83
- }
56
+ "gitHead": "96cf5b00b7c82a85b7ebae56e00d48c0b543bebc",
57
+ "types": "./dist/index.d.ts",
58
+ "module": "dist/index.js"
84
59
  }
package/src/index.ts DELETED
@@ -1,3 +0,0 @@
1
- import HvAppShell from "./components/AppShell/AppShell";
2
-
3
- export default HvAppShell;