@docaohuynh/ielts-api-utils 1.0.0

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 (3) hide show
  1. package/README.md +34 -0
  2. package/dist/index.js +23196 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # ielts-api-utils
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run index.ts
13
+ ```
14
+
15
+ To build:
16
+
17
+ ```bash
18
+ bun build index.ts --outdir dist
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```bash
24
+ bun add ../ielts-api-utils
25
+ ```
26
+ ## Build and publish to npm
27
+
28
+ ```bash
29
+ bun run build
30
+
31
+ npm login
32
+ npm publish --access public
33
+
34
+ ```