Skip to content

Commit 1553c6a

Browse files
authored
Docs improves (#13)
* Improve README.md with badges, expanded feature descriptions, and clearer usage instructions; rename CI workflow to Build in build.yml * Enhance README.md with additional badges, improved section headings, and expanded feature descriptions for better clarity and navigation * Update license to MIT; improve package metadata and README with enhanced description, author info, keywords, and badges * Expand .npmignore to exclude editor, build, config, and environment files; include types directory in package.json files array
1 parent ccfc283 commit 1553c6a

File tree

5 files changed

+155
-419
lines changed

5 files changed

+155
-419
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Build
22

33
on:
44
push:

.npmignore

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1-
dev/smoke-node.js
2-
dev/smoke-browser.html
3-
dev/
1+
# OS / editor
2+
.DS_Store
3+
.vscode/
4+
.idea/
5+
6+
# node / build
7+
node_modules/
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
12+
# source & dev
13+
src/
14+
dev/
15+
examples/
16+
tests/
17+
test/
18+
coverage/
19+
.nyc_output/
20+
*.log
21+
22+
# configs (opzionale)
23+
.eslintrc*
24+
.prettierrc*
25+
.editorconfig
26+
27+
# environment
28+
.env
29+
.env.local
30+
.env.*.local
31+
32+
# git / github
33+
.git/
34+
.gitignore
35+
.github/
36+
37+
# maps (opzionale)
38+
*.map

0 commit comments

Comments
 (0)