@popovandrii/ui-elements 0.0.8 → 0.0.9

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/README.md +1 -0
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -120,6 +120,7 @@ $ npm run lint
120
120
  $ npm run format
121
121
  $ npm publish --access public
122
122
  $ npm info @popovandrii/ui-elements@0.0.1
123
+ $ npm install @popovandrii/ui-elements@latest
123
124
  ```
124
125
 
125
126
  The './playground' folder for viewing in a browser
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Andrii Popov",
3
3
  "name": "@popovandrii/ui-elements",
4
4
  "description": "Custom UI elements like SpinBox with theme support",
5
- "version": "0.0.8",
5
+ "version": "0.0.9",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "spinbox",
@@ -17,14 +17,12 @@
17
17
  "bugs": {
18
18
  "url": "https://gitlab.com/AndreyPopov/ui-elements/-/issues"
19
19
  },
20
- "compilerOptions": {
21
- "moduleResolution": "node"
22
- },
23
20
  "main": "./dist/index.cjs.js",
24
21
  "module": "./dist/index.es.js",
25
22
  "types": "./dist/index.d.ts",
26
23
  "exports": {
27
24
  ".": {
25
+ "types": "./dist/index.d.ts",
28
26
  "import": "./dist/index.es.js",
29
27
  "require": "./dist/index.cjs.js"
30
28
  },