@batijs/build 0.0.244 → 0.0.245

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/dist/index.js +4 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  // src/index.ts
2
- import { existsSync } from "fs";
3
- import { mkdir, opendir, readFile as readFile2, writeFile } from "fs/promises";
4
- import path from "path";
2
+ import { existsSync } from "node:fs";
3
+ import { mkdir, opendir, readFile as readFile2, writeFile } from "node:fs/promises";
4
+ import path from "node:path";
5
5
  import { formatCode, transformAndFormat as transformAndFormat2 } from "@batijs/core";
6
6
 
7
7
  // src/merge-dts.ts
8
- import { readFile } from "fs/promises";
8
+ import { readFile } from "node:fs/promises";
9
9
  import { parseModule, transformAndFormat } from "@batijs/core";
10
10
  async function mergeDts({
11
11
  target,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@batijs/build",
3
- "version": "0.0.244",
3
+ "version": "0.0.245",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -10,10 +10,10 @@
10
10
  "devDependencies": {
11
11
  "@types/node": "^18.19.14",
12
12
  "tsup": "^8.2.4",
13
- "@batijs/compile": "0.0.244"
13
+ "@batijs/compile": "0.0.245"
14
14
  },
15
15
  "dependencies": {
16
- "@batijs/core": "0.0.244"
16
+ "@batijs/core": "0.0.245"
17
17
  },
18
18
  "main": "./dist/index.js",
19
19
  "module": "./dist/index.js",