@gopowerteam/request-generate 0.1.18 → 0.1.19
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.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -923,7 +923,7 @@ function writeServices(client, options) {
|
|
|
923
923
|
fs4.mkdirSync(output, { recursive: true });
|
|
924
924
|
client.services.forEach((service) => {
|
|
925
925
|
const filename = `${service.name}Service.ts`;
|
|
926
|
-
service.application = options.application;
|
|
926
|
+
service.application = Generate.options.appendService === false ? "" : options.application;
|
|
927
927
|
writeService(service, path4.join(output, filename));
|
|
928
928
|
});
|
|
929
929
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -924,7 +924,7 @@ function writeServices(client, options) {
|
|
|
924
924
|
fs4.mkdirSync(output, { recursive: true });
|
|
925
925
|
client.services.forEach((service) => {
|
|
926
926
|
const filename = `${service.name}Service.ts`;
|
|
927
|
-
service.application = options.application;
|
|
927
|
+
service.application = Generate.options.appendService === false ? "" : options.application;
|
|
928
928
|
writeService(service, path4.join(output, filename));
|
|
929
929
|
});
|
|
930
930
|
}
|