clear-af.js 1.0.3 → 1.0.5
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 +2 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# clear-af.js
|
|
2
|
+
[](https://www.npmjs.com/package/clear-af.js)
|
|
2
3
|
|
|
3
4
|
A JavaScript package packed with utilities to make your code **readable af**. Because clarity is the key to survival in programming.
|
|
4
5
|
|
|
@@ -122,4 +123,4 @@ npm run build
|
|
|
122
123
|
|
|
123
124
|
---
|
|
124
125
|
|
|
125
|
-
**clear-af.js** - *Because clarity is the developer's mental health.* 🖤
|
|
126
|
+
**clear-af.js** - *Because clarity is the developer's mental health.* 🖤
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clear-af.js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Make your code readable af with zero bullsh*t utilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -22,8 +22,10 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"author": "FroostDev",
|
|
24
24
|
"type": "commonjs",
|
|
25
|
-
"main": "index.js",
|
|
25
|
+
"main": "dist/index.js",
|
|
26
|
+
"types": "dist/index.d.ts",
|
|
26
27
|
"scripts": {
|
|
28
|
+
"build": "tsc",
|
|
27
29
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
28
30
|
"docs": "typedoc --out docs src"
|
|
29
31
|
},
|