@operato/shell 1.0.6 → 1.0.7

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 CHANGED
@@ -3,6 +3,15 @@
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.7](https://github.com/hatiolab/operato/compare/v1.0.6...v1.0.7) (2022-07-31)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * add copy-files to prepublish ([ed5fe03](https://github.com/hatiolab/operato/commit/ed5fe03946d40e93f436df146ef56e7d0a8c14fc))
12
+
13
+
14
+
6
15
  ### [1.0.6](https://github.com/hatiolab/operato/compare/v1.0.5...v1.0.6) (2022-07-31)
7
16
 
8
17
  **Note:** Version bump only for package @operato/shell
File without changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "WebApplication architecturing shell following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "heartyoh",
6
- "version": "1.0.6",
6
+ "version": "1.0.7",
7
7
  "main": "dist/src/index.js",
8
8
  "module": "dist/src/index.js",
9
9
  "exports": {
@@ -42,14 +42,14 @@
42
42
  "analyze": "cem analyze --litelement",
43
43
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
44
44
  "build": "tsc && npm run copy-files && npm run analyze -- --exclude dist",
45
- "prepublish": "tsc && npm run analyze -- --exclude dist",
45
+ "prepublish": "npm run build",
46
46
  "copy-files": "cp ./src/*.import ./dist/src",
47
47
  "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
48
48
  "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
49
49
  "test": "tsc && wtr --coverage",
50
50
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
51
- "storybook": "tsc && npm run analyze -- --exclude dist && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"",
52
- "storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
51
+ "storybook": "npm run build && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"",
52
+ "storybook:build": "npm run build && build-storybook"
53
53
  },
54
54
  "dependencies": {
55
55
  "@material/mwc-button": "^0.26.1",
@@ -96,5 +96,5 @@
96
96
  "prettier --write"
97
97
  ]
98
98
  },
99
- "gitHead": "e0c4443fb011f84350b93f1c0efa6a96f76cb40b"
99
+ "gitHead": "24e241b4f2d4cde785816ea5241f110ffb7a692c"
100
100
  }