@fleettools/core 0.1.1 → 0.2.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/index.js +1 -2
- package/package.json +4 -3
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fleettools/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Core utilities and types for FleetTools",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -11,8 +11,9 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "bun build src/index.ts --outdir dist --target
|
|
15
|
-
"build:
|
|
14
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
15
|
+
"build:bun": "bun build src/index.ts --outdir dist --target bun --format esm",
|
|
16
|
+
"build:node": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
16
17
|
"dev": "bun --watch src/index.ts",
|
|
17
18
|
"test": "bun test",
|
|
18
19
|
"test:watch": "bun test --watch",
|