@gershy/clearing 0.0.4 → 0.0.6
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/package.json +4 -2
- package/readme.md +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gershy/clearing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Adds the features you always wish javascript had!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clearing",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/gershy/clearing#readme",
|
|
19
19
|
"license": "ISC",
|
|
20
|
+
"types": "./cmp/types/global.d.ts",
|
|
20
21
|
"exports": {
|
|
21
22
|
".": {
|
|
22
23
|
"import": "./cmp/mjs/main.js",
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
"build.mjs": "tsc -p ts/tsconfig.mjs.json",
|
|
39
40
|
"build.types": "cpx src/global.d.ts cmp/types",
|
|
40
41
|
"build": "rimraf cmp && npm run build.cjs && npm run build.mjs && npm run build.types",
|
|
41
|
-
"
|
|
42
|
+
"npm.pub": "npm run build && npm publish --access public",
|
|
43
|
+
"git.pub": "git add --all && git commit -m \"automated\" && git push"
|
|
42
44
|
}
|
|
43
45
|
}
|
package/readme.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# Clearing
|
|
2
|
-
|
|
3
|
-
Ok Bob, give them the analogy.
|
|
4
|
-
|
|
5
|
-
Bob:
|
|
6
|
-
|
|
7
|
-
Javascript is... a dense forest. And you... want to pitch your tent somewhere. You just need a
|
|
8
|
-
friendly plot of flat earth, to use as a home base, so you can move on to follow your dreams. You
|
|
9
|
-
search through the dense forest, looking for... a *clearing*.
|
|
10
|
-
|
|
11
|
-
Thanks Bob that's plenty.
|
|
12
|
-
|
|
1
|
+
# Clearing
|
|
2
|
+
|
|
3
|
+
Ok Bob, give them the analogy.
|
|
4
|
+
|
|
5
|
+
Bob:
|
|
6
|
+
|
|
7
|
+
> Javascript is... a dense forest. And you... want to pitch your tent somewhere. You just need a
|
|
8
|
+
friendly plot of flat earth, to use as a home base, so you can move on to follow your dreams. You
|
|
9
|
+
search through the dense forest, looking for... a *clearing*.
|
|
10
|
+
|
|
11
|
+
Thanks Bob that's plenty.
|
|
12
|
+
|
|
13
13
|
The clearing module gives you all the features any sane person would want to see in javascript.
|