@batijs/build 0.0.529 → 0.0.530

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 +7 -0
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -37,6 +37,13 @@ async function mergeDts({
37
37
  const res = await transformAndFormat(currentAst.generate().code, meta, {
38
38
  filepath
39
39
  });
40
+ console.log({
41
+ filepath,
42
+ code: currentAst.generate().code,
43
+ clean: res.code,
44
+ previousContent,
45
+ fileContent
46
+ });
40
47
  return clearExports(res.code, meta);
41
48
  }
42
49
  function clearExports(code, meta) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@batijs/build",
3
- "version": "0.0.529",
3
+ "version": "0.0.530",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -10,11 +10,11 @@
10
10
  "devDependencies": {
11
11
  "@types/node": "^20.19.25",
12
12
  "tsup": "^8.5.1",
13
- "@batijs/compile": "0.0.529",
14
- "@batijs/features": "0.0.529"
13
+ "@batijs/features": "0.0.530",
14
+ "@batijs/compile": "0.0.530"
15
15
  },
16
16
  "dependencies": {
17
- "@batijs/core": "0.0.529"
17
+ "@batijs/core": "0.0.530"
18
18
  },
19
19
  "main": "./dist/index.js",
20
20
  "module": "./dist/index.js",