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.
- package/dist/mirror.js +3 -1
- 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
|
-
|
|
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);
|