@operato/shell 0.4.1 → 1.0.0-alpha.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.
- package/CHANGELOG.md +26 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.0-alpha.1](https://github.com/hatiolab/operato/compare/v0.4.3...v1.0.0-alpha.1) (2022-03-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/shell
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### [0.4.3](https://github.com/hatiolab/operato/compare/v0.4.2...v0.4.3) (2022-03-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :bug: Bug Fix
|
|
18
|
+
|
|
19
|
+
* remove @operato/graphql from @operato/shell ([1360743](https://github.com/hatiolab/operato/commit/1360743b62a59182763fc227cca58e142af780a1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### [0.4.2](https://github.com/hatiolab/operato/compare/v0.4.1...v0.4.2) (2022-03-06)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### :rocket: New Features
|
|
27
|
+
|
|
28
|
+
* add @operato/app module to support productivity for web application ([217d1f2](https://github.com/hatiolab/operato/commit/217d1f2d99ff75dcd8da1293814653f4758c04b8))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
6
32
|
### [0.4.1](https://github.com/hatiolab/operato/compare/v0.4.0...v0.4.1) (2022-03-02)
|
|
7
33
|
|
|
8
34
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/shell",
|
|
3
|
-
"description": "WebApplication shell following open-wc recommendations",
|
|
3
|
+
"description": "WebApplication architecturing shell following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "1.0.0-alpha.1",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
@@ -34,8 +34,9 @@
|
|
|
34
34
|
"@material/mwc-button": "^0.25.3",
|
|
35
35
|
"@material/mwc-icon": "^0.25.3",
|
|
36
36
|
"@material/mwc-icon-button": "^0.25.3",
|
|
37
|
-
"@operato/
|
|
38
|
-
"@operato/
|
|
37
|
+
"@operato/graphql": "^1.0.0-alpha.1",
|
|
38
|
+
"@operato/styles": "^1.0.0-alpha.1",
|
|
39
|
+
"@operato/utils": "^1.0.0-alpha.1",
|
|
39
40
|
"lit": "^2.2.0",
|
|
40
41
|
"lodash-es": "^4.17.21",
|
|
41
42
|
"pwa-helpers": "^0.9.1",
|
|
@@ -74,5 +75,5 @@
|
|
|
74
75
|
"prettier --write"
|
|
75
76
|
]
|
|
76
77
|
},
|
|
77
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "c1e9c1dc58feb942d69a2f8392358accb2860184"
|
|
78
79
|
}
|