aeria-sdk 0.0.12 → 0.0.13

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/mirror.js CHANGED
@@ -100,7 +100,7 @@ const mirror = async (config) => {
100
100
  recursive: true,
101
101
  });
102
102
  await (0, promises_1.writeFile)(path_1.default.join(process.cwd(), 'aeria-sdk.d.ts'), mirrorDts(mirror));
103
- await (0, promises_1.writeFile)(path_1.default.join(runtimeBase, '..', 'cjs', 'runtime.js'), (0, exports.runtimeCjs)(config));
104
- await (0, promises_1.writeFile)(path_1.default.join(runtimeBase, '..', 'esm', 'runtime.js'), (0, exports.runtimeEsm)(config));
103
+ await (0, promises_1.writeFile)(path_1.default.join(runtimeBase, 'runtime.js'), (0, exports.runtimeCjs)(config));
104
+ await (0, promises_1.writeFile)(path_1.default.join(runtimeBase, 'runtime.mjs'), (0, exports.runtimeEsm)(config));
105
105
  };
106
106
  exports.mirror = mirror;
package/dist/mirror.mjs CHANGED
@@ -171,13 +171,13 @@ export var mirror = function() {
171
171
  _state.sent();
172
172
  return [
173
173
  4,
174
- writeFile(path.join(runtimeBase, "..", "cjs", "runtime.mjs"), runtimeCjs(config))
174
+ writeFile(path.join(runtimeBase, "runtime.mjs"), runtimeCjs(config))
175
175
  ];
176
176
  case 4:
177
177
  _state.sent();
178
178
  return [
179
179
  4,
180
- writeFile(path.join(runtimeBase, "..", "esm", "runtime.mjs"), runtimeEsm(config))
180
+ writeFile(path.join(runtimeBase, "runtime.mjs"), runtimeEsm(config))
181
181
  ];
182
182
  case 5:
183
183
  _state.sent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aeria-sdk",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",