@lerx/promise-modal 0.2.0 → 0.2.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 (1) hide show
  1. package/package.json +23 -4
package/package.json CHANGED
@@ -1,6 +1,24 @@
1
1
  {
2
2
  "name": "@lerx/promise-modal",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
+ "description": "Universal React modal utility that can be used outside React components with promise-based results for alert, confirm, and prompt modals",
5
+ "keywords": [
6
+ "react",
7
+ "modal",
8
+ "promise",
9
+ "alert",
10
+ "confirm",
11
+ "prompt",
12
+ "typescript",
13
+ "utility",
14
+ "ui-components",
15
+ "dialog",
16
+ "popup",
17
+ "toast",
18
+ "notification",
19
+ "modal-utility",
20
+ "imperative-ui"
21
+ ],
4
22
  "repository": {
5
23
  "type": "git",
6
24
  "url": "https://github.com/vincent-kk/albatrion.git",
@@ -31,11 +49,12 @@
31
49
  "scripts": {
32
50
  "build": "rollup -c && yarn build:types",
33
51
  "build-storybook": "storybook build",
52
+ "build:publish:npm": "yarn build && yarn publish:npm",
34
53
  "build:types": "tsc -p ./tsconfig.declarations.json && tsc-alias -p ./tsconfig.declarations.json",
35
54
  "format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
36
55
  "lint": "eslint \"src/**/*.{ts,tsx}\"",
37
56
  "make-dependency-graph": "npx depcruise src --config .dependency-cruiser.js --output-type dot > dependency-graph.dot && dot -Tpng dependency-graph.dot -o dependency-graph.png",
38
- "publish:npm": "yarn build && yarn npm publish --access public",
57
+ "publish:npm": "yarn npm publish --access public",
39
58
  "size-limit": "size-limit",
40
59
  "start": "yarn build && yarn storybook",
41
60
  "storybook": "storybook dev -p 6006",
@@ -47,8 +66,8 @@
47
66
  },
48
67
  "dependencies": {
49
68
  "@emotion/css": "^11.0.0",
50
- "@winglet/common-utils": "^0.2.0",
51
- "@winglet/react-utils": "^0.2.0"
69
+ "@winglet/common-utils": "^0.2.1",
70
+ "@winglet/react-utils": "^0.2.1"
52
71
  },
53
72
  "devDependencies": {
54
73
  "@chromatic-com/storybook": "^3.2.6",