aeria-sdk 0.0.229 → 0.0.230

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/mirror.js +3 -1
  2. package/package.json +1 -1
package/dist/mirror.js CHANGED
@@ -120,7 +120,9 @@ export const writeRuntimeFile = async (mirrorPath, config) => {
120
120
  'js',
121
121
  ].join('.');
122
122
  await writeFile(path.join(runtimeBase, fname), js);
123
- await writeFile(path.join(mirrorPath, fname), js);
123
+ if (config.environment !== 'development') {
124
+ await writeFile(path.join(mirrorPath, fname), js);
125
+ }
124
126
  };
125
127
  export const writeDtsFile = async (mirrorPath, mirror, config) => {
126
128
  const dts = mirrorDts(mirror, config);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aeria-sdk",
3
3
  "type": "module",
4
- "version": "0.0.229",
4
+ "version": "0.0.230",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",