microboard-temp 0.1.0 → 0.1.1
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/dist/cjs/index.js +46581 -0
- package/dist/index.js +46565 -0
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microboard-temp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A flexible interactive whiteboard library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "bun build ./src/index.ts --outdir ./dist --target browser --format esm",
|
|
20
|
-
"build:cjs": "bun build ./src/index.ts --outdir ./dist/cjs --target browser --format cjs",
|
|
19
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target browser --format esm --declaration",
|
|
20
|
+
"build:cjs": "bun build ./src/index.ts --outdir ./dist/cjs --target browser --format cjs --declaration",
|
|
21
21
|
"build:all": "bun run build && bun run build:cjs",
|
|
22
22
|
"dev": "bun build ./src/index.ts --outdir ./dist --target browser --format esm --watch",
|
|
23
23
|
"test": "bun test",
|