@mapl/web 0.0.1 → 0.0.2
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 +1 -31
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -1,31 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
An NPM library template using Bun.
|
|
4
|
-
|
|
5
|
-
## Scripts
|
|
6
|
-
|
|
7
|
-
All script sources and usage.
|
|
8
|
-
|
|
9
|
-
### [Build](./scripts/build.ts)
|
|
10
|
-
|
|
11
|
-
Emit `.js` and `.d.ts` files to [`lib`](./lib).
|
|
12
|
-
|
|
13
|
-
### [Publish](./scripts/publish.ts)
|
|
14
|
-
|
|
15
|
-
Move [`package.json`](./package.json), [`README.md`](./README.md) to [`lib`](./lib) and publish the package.
|
|
16
|
-
|
|
17
|
-
### [Bench](./scripts/bench.ts)
|
|
18
|
-
|
|
19
|
-
Run files that ends with `.bench.ts` extension.
|
|
20
|
-
|
|
21
|
-
To run a specific file.
|
|
22
|
-
```bash
|
|
23
|
-
bun bench index # Run bench/index.bench.ts
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
To run the benchmark in `node`, add a `--node` parameter
|
|
27
|
-
```bash
|
|
28
|
-
bun bench --node
|
|
29
|
-
|
|
30
|
-
bun bench --node index # Run bench/index.bench.ts with node
|
|
31
|
-
```
|
|
1
|
+
A fast Web Standard framework.
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapl/web",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "A compiled web standard framework",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fast",
|
|
7
|
+
"compiled",
|
|
8
|
+
"cross-runtime",
|
|
9
|
+
"framework",
|
|
10
|
+
"web",
|
|
11
|
+
"backend"
|
|
12
|
+
],
|
|
6
13
|
"license": "MIT",
|
|
7
14
|
"type": "module",
|
|
8
15
|
"main": "./index.js",
|