@digipair/skill-common 0.82.4 → 0.82.5
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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -81,7 +81,7 @@ let CommonService = class CommonService {
|
|
|
81
81
|
const text = await fs.promises.readFile(`${path}/${digipair}/schema.json`, 'utf8');
|
|
82
82
|
schema = JSON.parse(text);
|
|
83
83
|
}
|
|
84
|
-
const filesCommon = await fs.promises.readdir(`${path}
|
|
84
|
+
const filesCommon = await fs.promises.readdir(`${path}/common`);
|
|
85
85
|
const files = await fs.promises.readdir(`${path}/${digipair}`);
|
|
86
86
|
const actionsCommon = (await Promise.all(filesCommon.map((file)=>{
|
|
87
87
|
var _exec;
|
package/index.esm.js
CHANGED
|
@@ -77,7 +77,7 @@ let CommonService = class CommonService {
|
|
|
77
77
|
const text = await promises.readFile(`${path}/${digipair}/schema.json`, 'utf8');
|
|
78
78
|
schema = JSON.parse(text);
|
|
79
79
|
}
|
|
80
|
-
const filesCommon = await promises.readdir(`${path}
|
|
80
|
+
const filesCommon = await promises.readdir(`${path}/common`);
|
|
81
81
|
const files = await promises.readdir(`${path}/${digipair}`);
|
|
82
82
|
const actionsCommon = (await Promise.all(filesCommon.map((file)=>{
|
|
83
83
|
var _exec;
|