web-csv-toolbox 0.0.0-next-20240114010437 → 0.0.0-next-20240114025335

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 +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,9 +4,12 @@
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
6
6
  ![node version](https://img.shields.io/node/v/web-csv-toolbox)
7
+
8
+ ![npm package minimized gzipped size](https://img.shields.io/bundlejs/size/web-csv-toolbox)
9
+ ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/kamiazya/web-csv-toolbox)
7
10
  ![npm](https://img.shields.io/npm/dm/web-csv-toolbox)
8
11
 
9
- # `🌐 web-csv-toolbox 💽`
12
+ # `🌐 web-csv-toolbox 🧰`
10
13
 
11
14
  A CSV Toolbox utilizing Web Standard APIs.
12
15
 
@@ -14,14 +17,13 @@ A CSV Toolbox utilizing Web Standard APIs.
14
17
 
15
18
  [![GitHub](https://img.shields.io/badge/-GitHub-181717?logo=GitHub&style=flat)](https://github.com/kamiazya/web-csv-toolbox)
16
19
  [![npm](https://img.shields.io/badge/-npm-CB3837?logo=npm&style=flat)](https://www.npmjs.com/package/web-csv-toolbox)
17
- [![yarn](https://img.shields.io/badge/-yarn-ffffff?logo=Yarn&style=flat)](https://yarnpkg.com/package/web-csv-toolbox)
18
20
  [![API Reference](https://img.shields.io/badge/-API%20Refarence-3178C6?logo=TypeScript&style=flat&logoColor=fff)](https://kamiazya.github.io/web-csv-toolbox/)
19
21
  [![Sponsor](https://img.shields.io/badge/-GitHub%20Sponsor-fff?logo=GitHub%20Sponsors&style=flat)](https://github.com/sponsors/kamiazya)
20
22
 
21
23
 
22
24
  [![format: Biome](https://img.shields.io/badge/format%20with-Biome-F7B911?logo=biome&style=flat)](https://biomejs.dev/)
23
25
  [![test: Vitest](https://img.shields.io/badge/tested%20with-Vitest-6E9F18?logo=vitest&style=flat)](https://vitest.dev/)
24
- [![build: Rollup](https://img.shields.io/badge/build%20with-Rollup-EC4A3F?logo=rollup.js&style=flat)](https://rollupjs.org/)
26
+ [![build: Vite](https://img.shields.io/badge/build%20with-Vite-646CFF?logo=vite&style=flat)](https://rollupjs.org/)
25
27
 
26
28
  </div>
27
29
 
@@ -93,7 +95,7 @@ Bob,69`;
93
95
 
94
96
  ```html
95
97
  <script type="module">
96
- import { parse } from 'https://unpkg.com/web-csv-toolbox/lib/index.js';
98
+ import { parse } from 'https://unpkg.com/web-csv-toolbox?module';
97
99
 
98
100
  const csv = `name,age
99
101
  Alice,42
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-csv-toolbox",
3
- "version": "0.0.0-next-20240114010437",
3
+ "version": "0.0.0-next-20240114025335",
4
4
  "description": "A CSV Toolbox utilizing Web Standard APIs.",
5
5
  "type": "module",
6
6
  "main": "dist/web-csv-toolbox.cjs",