@arkts/image-manager 0.1.2 → 0.1.3
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/index.cjs +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -141,7 +141,6 @@ var ImageDeployerImpl = class {
|
|
|
141
141
|
if (defaultProductConfigItem.devModel) return defaultProductConfigItem.devModel;
|
|
142
142
|
}
|
|
143
143
|
async buildList() {
|
|
144
|
-
if (!(await this.image.getProductConfig()).find((item) => item.name === this.config.productName)) throw new Error(`Product config item ${this.config.productName} not found`);
|
|
145
144
|
return {
|
|
146
145
|
...this.options,
|
|
147
146
|
"imageDir": this.image.getPath().split(",").join(this.image.getImageManager().getOptions().path.sep) + this.image.getImageManager().getOptions().path.sep,
|
package/dist/index.mjs
CHANGED
|
@@ -109,7 +109,6 @@ var ImageDeployerImpl = class {
|
|
|
109
109
|
if (defaultProductConfigItem.devModel) return defaultProductConfigItem.devModel;
|
|
110
110
|
}
|
|
111
111
|
async buildList() {
|
|
112
|
-
if (!(await this.image.getProductConfig()).find((item) => item.name === this.config.productName)) throw new Error(`Product config item ${this.config.productName} not found`);
|
|
113
112
|
return {
|
|
114
113
|
...this.options,
|
|
115
114
|
"imageDir": this.image.getPath().split(",").join(this.image.getImageManager().getOptions().path.sep) + this.image.getImageManager().getOptions().path.sep,
|
package/package.json
CHANGED