@akanjs/devkit 0.0.115 → 0.0.117

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.
@@ -109,6 +109,7 @@ class Builder {
109
109
  };
110
110
  buildResult.outputFiles.map((file) => this.#distExecutor.writeFile(file.path, file.text));
111
111
  this.#distExecutor.writeJson("package.json", pkgPackageJson);
112
+ this.#executor.writeJson("package.json", pkgPackageJson);
112
113
  }
113
114
  }
114
115
  // Annotate the CommonJS export names for ESM import in node:
@@ -77,6 +77,7 @@ class Builder {
77
77
  };
78
78
  buildResult.outputFiles.map((file) => this.#distExecutor.writeFile(file.path, file.text));
79
79
  this.#distExecutor.writeJson("package.json", pkgPackageJson);
80
+ this.#executor.writeJson("package.json", pkgPackageJson);
80
81
  }
81
82
  }
82
83
  export {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.115",
4
- "type": "commonjs",
3
+ "version": "0.0.117",
4
+ "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },