smart-result 0.0.2 → 0.0.3

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/README.md CHANGED
@@ -30,11 +30,11 @@ async function example() {
30
30
 
31
31
  ## Highlight
32
32
 
33
- 🖊 Good coding quality
34
- 👀 Highly readable
35
- 😄 Fewer things to remember
36
- ✅ Safety design
37
- 🛡 Type only
33
+ - 🖊 Good coding quality
34
+ - 👀 Highly readable
35
+ - 😄 Fewer things to remember
36
+ - ✅ Safety design
37
+ - 🛡 Type only
38
38
 
39
39
  ## Intall
40
40
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "smart-result",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "yarn clean && tsc -p ./tsconfig.json",
7
- "clean": "del-cli lib module",
7
+ "clean": "del-cli dist module",
8
8
  "versionup:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major",
9
9
  "versionup:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor",
10
10
  "versionup:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch"
@@ -20,10 +20,9 @@
20
20
  "url": "https://github.com/misuken-now/smart-result/issues"
21
21
  },
22
22
  "homepage": "https://github.com/misuken-now/smart-result#readme",
23
- "main": "./lib/index.js",
24
- "typings": "./lib/index.d.ts",
23
+ "typings": "./dist/index.d.ts",
25
24
  "files": [
26
- "lib",
25
+ "dist",
27
26
  "!**/__tests__"
28
27
  ],
29
28
  "devDependencies": {
package/lib/index.js DELETED
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
File without changes