aeria-sdk 0.0.87 → 0.0.89
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 +1 -1
- package/dist/mirror.mjs +1 -1
- package/package.json +2 -2
package/dist/mirror.js
CHANGED
|
@@ -114,7 +114,7 @@ const writeMirrorFiles = async (mirror, config, filesPath = path.join(process.cw
|
|
|
114
114
|
}
|
|
115
115
|
catch (err) {
|
|
116
116
|
}
|
|
117
|
-
const syntheticRequire = (0, module_1.createRequire)(process.cwd());
|
|
117
|
+
const syntheticRequire = (0, module_1.createRequire)(path.join(process.cwd(), 'node_modules'));
|
|
118
118
|
return syntheticRequire.resolve('aeria-sdk');
|
|
119
119
|
})();
|
|
120
120
|
const runtimeBase = path.dirname(resolvedPath);
|
package/dist/mirror.mjs
CHANGED
|
@@ -113,7 +113,7 @@ export const writeMirrorFiles = async (mirror, config, filesPath = path.join(pro
|
|
|
113
113
|
return require.resolve("aeria-sdk");
|
|
114
114
|
} catch (err) {
|
|
115
115
|
}
|
|
116
|
-
const syntheticRequire = createRequire(process.cwd());
|
|
116
|
+
const syntheticRequire = createRequire(path.join(process.cwd(), "node_modules"));
|
|
117
117
|
return syntheticRequire.resolve("aeria-sdk");
|
|
118
118
|
})();
|
|
119
119
|
const runtimeBase = path.dirname(resolvedPath);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aeria-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.89",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@aeriajs/types": "link:../types"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@aeriajs/common": "^0.0.
|
|
63
|
+
"@aeriajs/common": "^0.0.63",
|
|
64
64
|
"@aeriajs/types": "^0.0.58"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|