@solidstarters/solid-core 1.2.0 → 1.2.1
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/package.json
CHANGED
|
@@ -235,7 +235,7 @@ export class ModuleMetadataSeederService {
|
|
|
235
235
|
// const emailTemplateFilePath = path.join(process.cwd(), emailTemplate.body);
|
|
236
236
|
|
|
237
237
|
// emailTemplate.body = fs.readFileSync(emailTemplateFilePath, 'utf-8').toString()
|
|
238
|
-
const modulePath = path.dirname(require.resolve('@solidstarters/solid-core
|
|
238
|
+
const modulePath = path.dirname(require.resolve('@solidstarters/solid-core'));
|
|
239
239
|
|
|
240
240
|
// Resolve the `src` folder
|
|
241
241
|
const seedDataPath = path.join(modulePath, '../src/seeders/seed-data/email-templates');
|
|
@@ -267,7 +267,7 @@ export class ModuleMetadataSeederService {
|
|
|
267
267
|
// const smsTemplateFilePath = path.join(process.cwd(), smsTemplate.body);
|
|
268
268
|
// smsTemplate.body = fs.readFileSync(smsTemplateFilePath, 'utf-8').toString()
|
|
269
269
|
|
|
270
|
-
const modulePath = path.dirname(require.resolve('@solidstarters/solid-core
|
|
270
|
+
const modulePath = path.dirname(require.resolve('@solidstarters/solid-core'));
|
|
271
271
|
|
|
272
272
|
// Resolve the `src` folder
|
|
273
273
|
const seedDataPath = path.join(modulePath, '../src/seeders/seed-data/sms-templates');
|